15 lines
238 B
C++
15 lines
238 B
C++
#ifndef T_GRAPHICS_H
|
|
#define T_GRAPHICS_H
|
|
|
|
#include "T_BasePage.h"
|
|
|
|
class T_Graphics : public T_BasePage
|
|
{
|
|
Q_OBJECT
|
|
public:
|
|
Q_INVOKABLE explicit T_Graphics(QWidget* parent = nullptr);
|
|
~T_Graphics();
|
|
};
|
|
|
|
#endif // T_GRAPHICS_H
|