Changeset 14 for branches/DelphiToC/UCSource.pas
- Timestamp:
- Apr 9, 2009, 11:04:41 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/DelphiToC/UCSource.pas
r12 r14 3 3 interface 4 4 5 uses 6 Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, 7 Dialogs, StdCtrls, UPascalSource; 8 9 type 10 TCSource = class 11 TextSource: TStringList; 12 PascalSource: TStringList; 13 procedure Generate; 14 constructor Create; 15 destructor Destroy; override; 16 end; 17 5 18 implementation 6 19 20 { TCSource } 21 22 constructor TCSource.Create; 23 begin 24 TextSource := TStringList.Create; 25 end; 26 27 destructor TCSource.Destroy; 28 begin 29 TextSource.Free; 30 inherited; 31 end; 32 33 procedure TCSource.Generate; 34 begin 35 36 end; 37 7 38 end.
Note:
See TracChangeset
for help on using the changeset viewer.