home *** CD-ROM | disk | FTP | other *** search
/ Chip 2002 September / Chip_2002-09_cd1.bin / zkuste / delphi / kolekce / d56 / XMLCOMP.ZIP / test / TestXml.dpr < prev   
Text File  |  2002-06-17  |  537b  |  26 lines

  1. program TestXml;
  2.  
  3.  
  4.  
  5. {%File '..\DnXml.inc'}
  6.  
  7. uses
  8.   Forms,
  9.   FMain in 'FMain.pas' {Form1},
  10.   MSXML2_TLB in '..\MSXML2_TLB.pas',
  11.   DnXmlListMapper in '..\DnXmlListMapper.pas',
  12.   DnXml in '..\DnXml.pas',
  13.   DnXmlPropMapper in '..\DnXmlPropMapper.pas',
  14.   DnAddress in 'model\DnAddress.pas',
  15.   DnCountry in 'model\DnCountry.pas',
  16.   DnPerson in 'model\DnPerson.pas',
  17.   DnTestModel in 'model\DnTestModel.pas';
  18.  
  19. {$R *.RES}
  20.  
  21. begin
  22.   Application.Initialize;
  23.   Application.CreateForm(TForm1, Form1);
  24.   Application.Run;
  25. end.
  26.