brookregallcomp.pas 908 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. (*
  2. Brook for Free Pascal
  3. Copyright (C) 2014-2019 Silvio Clecio
  4. See the file LICENSE.txt, included in this distribution,
  5. for details about the copyright.
  6. This library is distributed in the hope that it will be useful,
  7. but WITHOUT ANY WARRANTY; without even the implied warranty of
  8. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  9. *)
  10. { Register all components. }
  11. unit BrookRegAllComp;
  12. {$i brook.inc}
  13. interface
  14. uses
  15. BrookRouterHandler, BrookSessionHandler, BrookMiddlewareHandler,
  16. BrookMessagesHandler_ptBR, BrookFCLEventLogHandler, BrookConfiguratorHandler,
  17. Classes;
  18. procedure Register;
  19. implementation
  20. procedure Register;
  21. begin
  22. RegisterComponents('Brook Core', [TBrookConfiguratorHandler,
  23. TBrookSessionHandler, TBrookMiddlewareHandler, TBrookRouterHandler,
  24. TBrookMessagesHandler_ptBR]);
  25. RegisterComponents('Brook Brokers', [TBrookFCLEventLogHandler]);
  26. end;
  27. end.