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