Samples
Samples
Namespaces
Language: Oxygene, Platform: Echoes, Category: Language
https://github.com/remobjects/ElementsSamples/tree/master/Oxygene/Echoes/Language/Namespaces
- Namespaces
UnitB.pas
namespace NameSpaces.SubNameSpaceB;
interface
uses
NameSpaces.SubNameSpaceA;
type
{ This class will be used in UnitA, namespace NameSpaces.SubNameSpaceA creating a
circular reference. Since Oxygene's namespace implementation is correct and complete,
such declarations are perfectly valid. }
Employee = class(Person)
public
property Salary : Double;
end;
implementation
end.
