Changeset 429 for ModularSystem/Demo/UModuleACL.pas
- Timestamp:
- Oct 17, 2012, 1:21:41 PM (12 years ago)
- Location:
- ModularSystem/Demo
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
ModularSystem/Demo
- Property svn:ignore
-
old new 5 5 Demo.lps 6 6 Demo 7 heaptrclog.trc
-
- Property svn:ignore
-
ModularSystem/Demo/UModuleACL.pas
r428 r429 12 12 13 13 TModuleACL = class(TModule) 14 protected 15 procedure DoInstall; override; 16 procedure DoStart; override; 17 procedure DoStop; override; 18 procedure DoUninstall; override; 19 public 14 20 constructor Create(AOwner: TComponent); override; 15 21 destructor Destroy; override; … … 19 25 implementation 20 26 27 uses 28 UMainForm; 29 21 30 { TModuleACL } 31 32 procedure TModuleACL.DoStart; 33 begin 34 MainForm.Log(Identification + ' started'); 35 end; 36 37 procedure TModuleACL.DoStop; 38 begin 39 MainForm.Log(Identification + ' stopped'); 40 end; 41 42 procedure TModuleACL.DoInstall; 43 begin 44 MainForm.Log(Identification + ' installed'); 45 end; 46 47 procedure TModuleACL.DoUninstall; 48 begin 49 MainForm.Log(Identification + ' uninstalled'); 50 end; 22 51 23 52 constructor TModuleACL.Create(AOwner: TComponent);
Note:
See TracChangeset
for help on using the changeset viewer.