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
+15
View File
@@ -0,0 +1,15 @@
#include "notepad.h"
#include "ui_notepad.h"
using namespace std;
NotePad::NotePad(QWidget *parent)
: QMainWindow(parent)
, ui(new Ui::NotePad)
{
ui->setupUi(this);
}
NotePad::~NotePad(){
}