From dd95fa3ce7a94c1fce9e084071af4031b2bd50e9 Mon Sep 17 00:00:00 2001 From: Aleks Kissinger Date: Wed, 11 Jan 2017 17:31:47 +0100 Subject: boilerplate --- tikzit/mainwindow.cpp | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 tikzit/mainwindow.cpp (limited to 'tikzit/mainwindow.cpp') diff --git a/tikzit/mainwindow.cpp b/tikzit/mainwindow.cpp new file mode 100644 index 0000000..49d64fc --- /dev/null +++ b/tikzit/mainwindow.cpp @@ -0,0 +1,14 @@ +#include "mainwindow.h" +#include "ui_mainwindow.h" + +MainWindow::MainWindow(QWidget *parent) : + QMainWindow(parent), + ui(new Ui::MainWindow) +{ + ui->setupUi(this); +} + +MainWindow::~MainWindow() +{ + delete ui; +} -- cgit v1.2.3