Add validation to the new project wizard

This commit is contained in:
2017-04-20 18:35:14 -05:00
parent 681eb55db3
commit 9730ef773e
6 changed files with 237 additions and 63 deletions
+25
View File
@@ -0,0 +1,25 @@
/*
* Copyright 2016-2017 gtalent2@gmail.com
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
#pragma once
namespace nostalgia {
namespace studio {
class Project: public QObject {
Q_OBJECT
private:
QByteArray *m_romBuff = nullptr;
public:
void create(QString path);
};
}
}