Skip to content

Commit

Permalink
feat: Adding class of to all current classes
Browse files Browse the repository at this point in the history
  • Loading branch information
gcarreno committed Sep 24, 2023
1 parent 867ba84 commit 08b4340
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/dispatcher/polykerma.dispatcher.pas
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ TInterfacedDispatcher = class(TInterfacedObject, IDispatcher)
procedure Post(const AChannel: String; const AMessage: IMessage);
published
end;
TInterfacedDispatcherClass = class of TInterfacedDispatcher;

implementation

Expand Down
1 change: 1 addition & 0 deletions src/messages/polykerma.messages.message.pas
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ TInterfacedMessage = class(TInterfacedObject, IMessage)

published
end;
TInterfacedMessageClass = class of TInterfacedMessage;

implementation

Expand Down
1 change: 1 addition & 0 deletions src/modules/polykerma.modules.module.pas
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ TInterfacedModule = class(TInterfacedObject, IModule)

published
end;
TInterfacedModuleClass = class of TInterfacedModule;

implementation

Expand Down

0 comments on commit 08b4340

Please sign in to comment.