summaryrefslogtreecommitdiff
path: root/src/CurveEditor.cxx
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.cxx
parent553130aba9956b9dce8f1e96eade8c0dc15116e2 (diff)
add CurveEditor class
Diffstat (limited to 'src/CurveEditor.cxx')
-rw-r--r--src/CurveEditor.cxx19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/CurveEditor.cxx b/src/CurveEditor.cxx
new file mode 100644
index 0000000..edc3a46
--- /dev/null
+++ b/src/CurveEditor.cxx
@@ -0,0 +1,19 @@
+//
+// 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.
+
+#include <stdio.h>
+#include <string.h>
+
+#include <FL/Fl.H>
+
+#include "CurveEditor.H"
+
+
+CurveEditor::CurveEditor(int my_x, int my_y, int my_w, int my_h) :
+ Fl_Widget(my_x, my_y, my_w, my_h) {
+
+}
+