00001 #ifndef CAMWINDOW_HPP 00002 #define CAMWINDOW_HPP 00003 00004 #include <qmainwindow.h> 00005 00006 00007 class CCamWindow: public QMainWindow 00008 { 00009 Q_OBJECT 00010 private: 00011 00012 protected: 00013 CCamWindow(QWidget *parent = 0, const char *name = 0); 00014 00015 public: 00016 ~CCamWindow(); 00017 }; 00018 00019 00020 00021 #endif