add of blocNote
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
#ifndef NOTEPAD_H
|
||||
#define NOTEPAD_H
|
||||
|
||||
#include <QMainWindow>
|
||||
|
||||
QT_BEGIN_NAMESPACE
|
||||
namespace Ui {
|
||||
class NotePad;
|
||||
}
|
||||
QT_END_NAMESPACE
|
||||
|
||||
class NotePad : public QMainWindow
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
NotePad(QWidget *parent = nullptr);
|
||||
~NotePad();
|
||||
|
||||
private:
|
||||
Ui::NotePad *ui;
|
||||
};
|
||||
|
||||
#endif // NOTEPAD_H
|
||||
Reference in New Issue
Block a user