home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2000 February
/
Chip_2000-02_cd.bin
/
zkuste
/
Delphi
/
navody
/
tt
/
objvm.exe
/
UNITS
/
MemberValue.pas
< prev
next >
Wrap
Pascal/Delphi Source File
|
1998-03-16
|
349b
|
17 lines
unit MemberValue;
interface
uses LangValue;
type TMemberValue=class(ILangValue)
public
Parent:ILangValue;
constructor Create(aParent:ILangValue);
end;
implementation
constructor TMemberValue.Create;
begin
Inherited Create(nil);
Parent:=aParent;
end;
end.