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