summaryrefslogtreecommitdiff
path: root/src/CurveEditor.H
diff options
context:
space:
mode:
authorJohannes Hofmann <Johannes.Hofmann@gmx.de>2008-01-12 22:43:00 +0100
committerJohannes Hofmann <Johannes.Hofmann@gmx.de>2008-01-12 22:43:00 +0100
commit7ba1feb416a47b0266615de08b69e1733e18e3a5 (patch)
tree0dc206cca9cc9b8c46330ef0806f903d992725a4 /src/CurveEditor.H
parent553130aba9956b9dce8f1e96eade8c0dc15116e2 (diff)
add CurveEditor class
Diffstat (limited to 'src/CurveEditor.H')
-rw-r--r--src/CurveEditor.H20
1 files changed, 20 insertions, 0 deletions
diff --git a/src/CurveEditor.H b/src/CurveEditor.H
new file mode 100644
index 0000000..4e58e6e
--- /dev/null
+++ b/src/CurveEditor.H
@@ -0,0 +1,20 @@
+//
+// Copyright 2008 Johannes Hofmann <Johannes.Hofmann@gmx.de>
+//
+// This software may be used and distributed according to the terms
+// of the GNU General Public License, incorporated herein by reference.
+
+#ifndef CurveEditor_H
+#define CurveEditor_H
+
+#include <FL/Fl_Widget.H>
+
+class CurveEditor : public Fl_Widget {
+ private:
+
+ public:
+ CurveEditor(int _x, int _y, int _w, int _h);
+
+};
+
+#endif