1program GPSBabelGUI;
2
3{%ToDo 'GPSBabelGUI.todo'}
4
5uses
6  Forms,
7  GPSBabelGUIDialogU in 'GPSBabelGUIDialogU.pas' {GPSBabelGUIDialog},
8  AboutDialogU in 'AboutDialogU.pas' {AboutBox};
9
10{$R *.res}
11
12begin
13  Application.Initialize;
14  Application.Title := 'GPSBabelGUI';
15  Application.CreateForm(TGPSBabelGUIDialog, GPSBabelGUIDialog);
16  Application.Run;
17end.
18