quill/calendarapp.h
2022-04-05 00:47:15 -04:00

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