home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 1997 May / Pcwk0597.iso / borland / cb / setup / cbuilder / data.z / PROXIES.INT < prev    next >
Text File  |  1997-02-28  |  526b  |  16 lines

  1. unit Proxies;                // $Revision:   1.4  $
  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.  
  15. implementation
  16.