CCIMXDesktop
 
Loading...
Searching...
No Matches
timercreatorwindow.h
1#ifndef TIMERCREATORWINDOW_H
2#define TIMERCREATORWINDOW_H
3
4#include <QMainWindow>
5class AlarmyNote;
6
7
8class TimerCreatorWindow : public QMainWindow {
9 Q_OBJECT
10public:
11 explicit TimerCreatorWindow(QWidget* parent = nullptr);
12
13signals:
14 void notifyNewTimer(AlarmyNote* alarmy_notes);
15};
16
17#endif // TIMERCREATORWINDOW_H
Definition alarmynote.h:4
Definition timercreatorwindow.h:8