2008-02-20 06:52:00 +00:00
|
|
|
|
program X2XMLDataBinding;
|
|
|
|
|
|
|
|
|
|
{$WARN SYMBOL_PLATFORM OFF}
|
|
|
|
|
|
|
|
|
|
uses
|
|
|
|
|
Forms,
|
|
|
|
|
MainFrm in 'Forms\MainFrm.pas' {MainForm},
|
|
|
|
|
XMLDataBindingGenerator in 'Units\XMLDataBindingGenerator.pas',
|
|
|
|
|
DelphiXMLDataBindingGenerator in 'Units\DelphiXMLDataBindingGenerator.pas',
|
2008-04-14 19:20:55 +00:00
|
|
|
|
XMLDataBindingHelpers in 'Units\XMLDataBindingHelpers.pas',
|
2008-04-22 13:36:55 +00:00
|
|
|
|
DelphiXMLDataBindingResources in 'Units\DelphiXMLDataBindingResources.pas',
|
|
|
|
|
DataBindingSettingsXML in 'Units\DataBindingSettingsXML.pas',
|
2008-04-24 14:37:05 +00:00
|
|
|
|
DataBindingHintsXML in 'Units\DataBindingHintsXML.pas',
|
|
|
|
|
MSXML2_TLB in 'Units\MSXML2_TLB.pas';
|
2008-02-20 06:52:00 +00:00
|
|
|
|
|
|
|
|
|
{$R *.res}
|
|
|
|
|
|
|
|
|
|
var
|
|
|
|
|
MainForm: TMainForm;
|
|
|
|
|
|
|
|
|
|
begin
|
|
|
|
|
{$IFDEF VER180}
|
|
|
|
|
ReportMemoryLeaksOnShutdown := (DebugHook <> 0);
|
|
|
|
|
{$ENDIF}
|
|
|
|
|
|
|
|
|
|
Application.Initialize;
|
2008-04-14 19:20:55 +00:00
|
|
|
|
Application.Title := 'X<>Software XML Data Binding for Delphi';
|
2008-02-20 06:52:00 +00:00
|
|
|
|
Application.CreateForm(TMainForm, MainForm);
|
|
|
|
|
Application.Run;
|
|
|
|
|
end.
|