#ifndef NL_QNELWINDOW_H #define NL_QNELWINDOW_H ///----------------------------------------------------------------------------- /// C++ includes #include #include #include #include #include ///----------------------------------------------------------------------------- /// Windowing Toolkit includes. #include ///----------------------------------------------------------------------------- /// The CameraTrack class which holds the objects and information to render /// the terrain. class QNelWindow : public QMainWindow { Q_OBJECT public: //explicit QNelWindow (QWidget *parent=0, Qt::WFlags f=0) : QMainWindow (parent, f) { initWindow(); } explicit QNelWindow (QWidget *parent=0, Qt::WFlags f=0); virtual ~QNelWindow() { } public slots: protected: void initWindow(); //CameraTrackWidget *myWidget; //CameraTrackWidget *myWidget2; }; #endif // NL_QNELWINDOW_H