Make New Project create new projects

This commit is contained in:
2017-04-20 23:15:25 -05:00
parent 9730ef773e
commit 51124966c3
5 changed files with 40 additions and 7 deletions
+4 -1
View File
@@ -15,10 +15,13 @@ class Project: public QObject {
Q_OBJECT
private:
QString m_path = "";
QByteArray *m_romBuff = nullptr;
public:
void create(QString path);
Project(QString path);
void create();
};
}