diff options
Diffstat (limited to 'src/CurveEditor.cxx')
| -rw-r--r-- | src/CurveEditor.cxx | 19 |
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) { + +} + |
