home *** CD-ROM | disk | FTP | other *** search
- 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.
-