Files
MycLib/AuraTrader/TestModule.pas
T
Michael Schimmel 58ce84e567 Chart Control V1
2025-07-02 14:49:33 +02:00

31 lines
558 B
ObjectPascal

unit TestModule;
interface
uses
Myc.Aura.Module;
type
TTestModule = class( TMycAuraNode, IAuraModule )
private
FId: Integer;
public
constructor Create(const AName: string; AId: Integer);
procedure SetupWorkspace(const Workspace: IAuraWorkspace);
end;
implementation
constructor TTestModule.Create(const AName: string; AId: Integer);
begin
inherited Create(AName);
FId := AId;
end;
procedure TTestModule.SetupWorkspace(const Workspace: IAuraWorkspace);
begin
end;
end.