summaryrefslogtreecommitdiff
path: root/extras/tiopf/demos/Demo_04_CreateDatabase/demo_04.lpr
diff options
context:
space:
mode:
Diffstat (limited to 'extras/tiopf/demos/Demo_04_CreateDatabase/demo_04.lpr')
-rw-r--r--extras/tiopf/demos/Demo_04_CreateDatabase/demo_04.lpr39
1 files changed, 0 insertions, 39 deletions
diff --git a/extras/tiopf/demos/Demo_04_CreateDatabase/demo_04.lpr b/extras/tiopf/demos/Demo_04_CreateDatabase/demo_04.lpr
deleted file mode 100644
index d7ff4605..00000000
--- a/extras/tiopf/demos/Demo_04_CreateDatabase/demo_04.lpr
+++ /dev/null
@@ -1,39 +0,0 @@
-program demo_04;
-
-{$mode objfpc}{$H+}
-
-uses
- {$IFDEF UNIX}{$IFDEF UseCThreads}
- cthreads,
- {$ENDIF}{$ENDIF}
- Classes
- ,SysUtils
- ,fpg_main
- ,tiOPFManager
- ,tiConstants
- ,frm_main
- ;
-
-
-
-procedure MainProc;
-var
- frm: TMainForm;
-begin
- fpgApplication.Initialize;
- frm := TMainForm.Create(nil);
- try
- frm.Show;
- fpgApplication.Run;
- finally
- frm.Free;
- gTIOPFManager.Terminate;
- end;
-end;
-
-begin
- MainProc;
-end.
-
-
-