home *** CD-ROM | disk | FTP | other *** search
/ Chip 2002 September / Chip_2002-09_cd1.bin / zkuste / delphi / kolekce / d56 / XMLCOMP.ZIP / DnXmlRegister.pas < prev    next >
Pascal/Delphi Source File  |  2002-06-04  |  306b  |  21 lines

  1. unit DnXmlRegister;
  2.  
  3. {:Registers the components in the Delphi IDE component palette.}
  4.  
  5. interface
  6.  
  7. procedure Register;
  8.  
  9. implementation
  10.  
  11. uses
  12.   Classes,
  13.   DnXml;
  14.  
  15. procedure Register;
  16. begin
  17.   RegisterComponents('Dnote Software', [TDnXmlReader, TDnXmlWriter, TDnXmlDictionary]);
  18. end;
  19.  
  20. end.
  21.