16 lines
206 B
C++
16 lines
206 B
C++
#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(){
|
|
|
|
}
|