Chart Control V1

This commit is contained in:
Michael Schimmel
2025-07-02 14:49:33 +02:00
parent b453236b1e
commit 58ce84e567
11 changed files with 1746 additions and 256 deletions
+30
View File
@@ -0,0 +1,30 @@
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.