|
@@ -63,6 +63,7 @@ Type
|
|
|
Function CheckOptions(Const ShortOptions : String; Const LongOpts : String) : String;
|
|
|
Procedure GetEnvironmentList(List : TStrings;NamesOnly : Boolean);
|
|
|
Procedure GetEnvironmentList(List : TStrings);
|
|
|
+ Procedure Log(EventType : TEventType; Msg : String); virtual;
|
|
|
// Delphi properties
|
|
|
property ExeName: string read GetExeName;
|
|
|
property HelpFile: string read FHelpFile write FHelpFile;
|
|
@@ -222,6 +223,12 @@ begin
|
|
|
// Do nothing. Override in descendent classes.
|
|
|
end;
|
|
|
|
|
|
+Procedure TCustomApplication.Log(EventType : TEventType; Msg : String);
|
|
|
+
|
|
|
+begin
|
|
|
+ // Do nothing. Override in descendent classes.
|
|
|
+end;
|
|
|
+
|
|
|
constructor TCustomApplication.Create(AOwner: TComponent);
|
|
|
begin
|
|
|
inherited Create(AOwner);
|