home *** CD-ROM | disk | FTP | other *** search
/ DOS/V Power Report 1997 August / VPR9708A.ISO / D3TRIAL / INSTALL / DATA.Z / PROXIES.INT < prev    next >
Text File  |  1997-03-21  |  570b  |  17 lines

  1. unit Proxies;
  2.  
  3. interface
  4.  
  5. procedure CreateSubClass(Instance: TObject; const ClassName: string;
  6.   Ancestor: TClass);
  7. procedure DestroySubClass(Instance: TObject);
  8. procedure RenameSubClass(Instance: TObject; const ClassName: string);
  9. function GetSubClassInstance(Proxy: TClass): TObject;
  10. function CreateSubClassMethod(Instance: TObject;
  11.   const MethodName: string): Pointer;
  12. procedure RenameSubClassMethod(Instance: TObject; Method: Pointer;
  13.   const MethodName: string);
  14. procedure DestroySubClassMethod(Instance: TObject; Method: Pointer);
  15.  
  16. implementation
  17.