Qt: Add msvc support

This commit is contained in:
Shawn Hoffman
2014-09-14 17:44:07 -07:00
parent 16c6a19190
commit ae3a5ce9e3
12 changed files with 363 additions and 37 deletions

View File

@ -4,6 +4,7 @@
#pragma once
#include <memory>
#include <QMainWindow>
// Predefinitions
@ -16,7 +17,7 @@ class DMainWindow : public QMainWindow
Q_OBJECT
public:
explicit DMainWindow(QWidget *p = 0);
explicit DMainWindow(QWidget* p = nullptr);
~DMainWindow();
private slots:
@ -28,5 +29,5 @@ private slots:
void on_actAbout_triggered();
private:
Ui::DMainWindow *ui;
std::unique_ptr<Ui::DMainWindow> ui;
};