// HQApplication.h - Public interface for HOOPS/Qt class HQApplication
//
// About this class

#ifndef HQAPPLICATION_H
#define HQAPPLICATION_H

// Qt Headers
#include <qmainwindow.h>
#include <qevent.h>

class HQApplication : public QMainWindow
{
 Q_OBJECT

public:

 HQApplication(QApplication * p);
 HQApplication(const char * filename);
 ~HQApplication(); 

private slots:

 void myclose(); 
 void newwindow(); 
 void load();
 void about();

private:

 void load(const char * filename);
 QToolBar * tools;

protected:

 void closeEvent( QCloseEvent * );

};

#endif