blob: edc3a46836ad9350f380788ad322b0172d9c21df (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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) {
}
|