/* * Window.hpp * * Created on: Jan 7, 2010 * Author: crueger */ #ifndef MAINWINDOW_HPP_ #define MAINWINDOW_HPP_ // include config.h #ifdef HAVE_CONFIG_H #include #endif class MainWindow { public: MainWindow(); virtual ~MainWindow(); virtual void display()=0; }; #endif /* MAINWINDOW_HPP_ */