summaryrefslogtreecommitdiff
path: root/FL/Fl_Window_Driver.H
diff options
context:
space:
mode:
Diffstat (limited to 'FL/Fl_Window_Driver.H')
-rw-r--r--FL/Fl_Window_Driver.H44
1 files changed, 44 insertions, 0 deletions
diff --git a/FL/Fl_Window_Driver.H b/FL/Fl_Window_Driver.H
new file mode 100644
index 000000000..6b2e0ad89
--- /dev/null
+++ b/FL/Fl_Window_Driver.H
@@ -0,0 +1,44 @@
+//
+// "$Id$"
+//
+// A base class for platform specific window handling code
+// for the Fast Light Tool Kit (FLTK).
+//
+// Copyright 2010-2016 by Bill Spitzak and others.
+//
+// This library is free software. Distribution and use rights are outlined in
+// the file "COPYING" which should have been included with this file. If this
+// file is missing or damaged, see the license at:
+//
+// http://www.fltk.org/COPYING.php
+//
+// Please report all bugs and problems on the following page:
+//
+// http://www.fltk.org/str.php
+//
+
+/** \file Fl_Window_Driver.H
+ \brief declaration of classe Fl_Window_Driver.
+*/
+
+#ifndef FL_WINDOW_DRIVER_H
+#define FL_WINDOW_DRIVER_H
+
+#include <FL/x.H>
+
+
+/**
+ \brief A base class for platform specific window handling code.
+ */
+class FL_EXPORT Fl_Window_Driver : public Fl_X {
+public:
+ Fl_Window_Driver();
+ virtual ~Fl_Window_Driver();
+};
+
+
+#endif // FL_WINDOW_DRIVER_H
+
+//
+// End of "$Id$".
+//