home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2000 February
/
Chip_2000-02_cd.bin
/
zkuste
/
Delphi
/
navody
/
tt
/
objvm.exe
/
UNITS
/
ObjOp.pas
< prev
next >
Wrap
Pascal/Delphi Source File
|
1998-03-05
|
536b
|
24 lines
unit ObjOp;
{Operation for objective VM}
interface
uses
uExecution;
Type TObjOp=class
public
OpCode:Integer;
Constructor Create;virtual;
Destructor Destroy;override;
procedure Execute(a:IExecution);virtual;abstract;
end;
TObjOpClass=class of TObjOp;
implementation
Constructor TObjOp.Create;
begin
Inherited Create;
end;
Destructor TObjOp.Destroy;
begin
Inherited Destroy;
end;
end.