diff --git a/wrappers/Delphi b/wrappers/Delphi new file mode 100644 index 00000000..d311bdfc --- /dev/null +++ b/wrappers/Delphi @@ -0,0 +1,16 @@ +program Project4; + +uses + Forms, + main in 'main.pas' {MainForm}, + uMolChart in 'uMolChart.pas', + cpIntf in 'cpIntf.pas'; + +{$R *.res} + +begin + Application.Initialize; + Application.MainFormOnTaskbar := True; + Application.CreateForm(TMainForm, MainForm); + Application.Run; +end.