Skip to content

Commit

Permalink
IDE Registration for System Copy and Merge components. #22
Browse files Browse the repository at this point in the history
  • Loading branch information
bero committed Dec 6, 2024
1 parent 95a62f9 commit dda3dba
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions Source/BoldToolsReg.pas
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
{ Global compiler directives }
{$include bold.inc}
unit BoldToolsReg;

interface

procedure Register;

implementation

uses
Classes,
BoldIdeConsts,
BoldSystemCopy,
BoldSystemMerger;

procedure Register;
begin
RegisterComponents(BOLDPAGENAME_PERSISTENCE, [TBoldSystemCopy, TBoldSystemMerger]);
end;

end.

0 comments on commit dda3dba

Please sign in to comment.