mirror of
https://github.com/Quill-OS/quill.git
synced 2024-10-31 21:33:22 -07:00
26 lines
401 B
C++
26 lines
401 B
C++
#ifndef CALENDARAPP_H
|
|
#define CALENDARAPP_H
|
|
|
|
#include <QWidget>
|
|
|
|
namespace Ui {
|
|
class calendarApp;
|
|
}
|
|
|
|
class calendarApp : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
QString className = this->metaObject()->className();
|
|
explicit calendarApp(QWidget *parent = nullptr);
|
|
~calendarApp();
|
|
|
|
private slots:
|
|
void on_backBtn_clicked();
|
|
|
|
private:
|
|
Ui::calendarApp *ui;
|
|
};
|
|
|
|
#endif // CALENDARAPP_H
|