summaryrefslogtreecommitdiff
path: root/gfx/template/gfxinterface.pas
diff options
context:
space:
mode:
Diffstat (limited to 'gfx/template/gfxinterface.pas')
-rw-r--r--gfx/template/gfxinterface.pas46
1 files changed, 46 insertions, 0 deletions
diff --git a/gfx/template/gfxinterface.pas b/gfx/template/gfxinterface.pas
new file mode 100644
index 00000000..189b772c
--- /dev/null
+++ b/gfx/template/gfxinterface.pas
@@ -0,0 +1,46 @@
+{
+ fpGFX - Free Pascal Graphics Library
+ Copyright (C) 2000 by
+ Areca Systems GmbH / Sebastian Guenther, sg@freepascal.org
+ Copyright (C) 2006 by Graeme Geldenhuys
+ member of the fpGFX development team.
+
+ Default target selection unit for template unit
+
+ See the file COPYING.fpGFX, included in this distribution,
+ for details about the copyright.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+
+ **********************************************************************}
+
+
+unit GFXImpl;
+
+interface
+
+uses GFX_xxx;
+
+
+type
+
+ TDefDisplay = TxxxDisplay;
+ TDefWindow = TxxxWindow;
+
+
+implementation
+
+end.
+
+
+{
+ $Log: gfximpl.pp,v $
+ Revision 1.2 2000/10/28 20:28:27 sg
+ * First version
+
+ Revision 1.1 2000/08/04 21:05:53 sg
+ * First version in CVS
+
+}