add of blocNote

This commit is contained in:
2025-06-25 00:12:34 +02:00
parent c8a253e690
commit 78cd25df39
72 changed files with 82 additions and 10 deletions
+24
View File
@@ -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