forked from blue/squawk
27 lines
358 B
C
27 lines
358 B
C
|
#ifndef PAGEGENERAL_H
|
||
|
#define PAGEGENERAL_H
|
||
|
|
||
|
#include <QWidget>
|
||
|
#include <QScopedPointer>
|
||
|
|
||
|
namespace Ui
|
||
|
{
|
||
|
class PageGeneral;
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @todo write docs
|
||
|
*/
|
||
|
class PageGeneral : public QWidget
|
||
|
{
|
||
|
Q_OBJECT
|
||
|
public:
|
||
|
PageGeneral(QWidget* parent = nullptr);
|
||
|
~PageGeneral();
|
||
|
|
||
|
private:
|
||
|
QScopedPointer<Ui::PageGeneral> m_ui;
|
||
|
};
|
||
|
|
||
|
#endif // PAGEGENERAL_H
|