15 lines
235 B
C
15 lines
235 B
C
|
#ifndef FINCLIPQTDEMO_H
|
||
|
#define FINCLIPQTDEMO_H
|
||
|
|
||
|
#include <QMainWindow>
|
||
|
|
||
|
class FinclipQtDemo : public QMainWindow
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
|
||
|
public:
|
||
|
FinclipQtDemo(QWidget *parent = nullptr);
|
||
|
~FinclipQtDemo();
|
||
|
};
|
||
|
#endif // FINCLIPQTDEMO_H
|