Loopp/src/gui.hxx

21 lines
239 B
C++
Raw Normal View History

2013-04-20 12:50:30 +02:00
#ifndef LUPPP_GUI
#define LUPPP_GUI
#include <FL/Fl.H>
#include <FL/Fl_Window.H>
#include <FL/Fl_Box.H>
class Gui
{
public:
Gui();
int show();
private:
Fl_Window* window;
Fl_Box* box;
};
#endif // LUPPP_GUI