home *** CD-ROM | disk | FTP | other *** search
/ PC Pro 2005 June (DVD) / DPPRO0605DVD.iso / Install / program files / Borland / BDS / 3.0 / Objrepos / DelphiDotNet / ClassTemplate.pas < prev    next >
Encoding:
Pascal/Delphi Source File  |  2004-10-22  |  381 b   |  26 lines

  1. unit [!UnitName];
  2.  
  3. interface
  4.  
  5. type
  6. [!if=(AncestorName, "<NONE>")]
  7.   T[!ClassName] = class
  8. [!else]
  9.   T[!ClassName] = class([!AncestorName])
  10. [!endif]
  11.   private
  12.     { Private Declarations }
  13.   public
  14.     constructor Create;
  15.   end;
  16.  
  17. implementation
  18.  
  19. constructor T[!ClassName].Create;
  20. begin
  21.   inherited Create;
  22.   // TODO: Add any constructor code here
  23. end;
  24.  
  25. end.
  26.