14 lines
197 B
C
14 lines
197 B
C
|
#ifndef BRIGHTWIN_H
|
||
|
#define BRIGHTWIN_H
|
||
|
|
||
|
#include "basewin.h"
|
||
|
|
||
|
class BrightWin : public BaseWin {
|
||
|
Q_OBJECT
|
||
|
public:
|
||
|
explicit BrightWin(QWidget *parent = nullptr);
|
||
|
|
||
|
};
|
||
|
|
||
|
#endif // BRIGHTWIN_H
|