16 lines
244 B
C
16 lines
244 B
C
|
#ifndef MainWindow_H
|
||
|
#define MainWindow_H
|
||
|
|
||
|
#include <QMainWindow>
|
||
|
//#include "Singleton.h"
|
||
|
|
||
|
class ccsMainWindow : public QMainWindow
|
||
|
{
|
||
|
public:
|
||
|
//SINGLETON(ccsMainWindow)
|
||
|
|
||
|
private:
|
||
|
void closeEvent(QCloseEvent *event) override;
|
||
|
};
|
||
|
|
||
|
#endif
|