quill/calendarapp.h

26 lines
344 B
C
Raw Normal View History

2021-03-25 05:00:19 -07:00
#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