Add project explorer dock and tab bar

This commit is contained in:
2017-05-11 15:20:24 -05:00
parent 3901493274
commit c548d200b6
9 changed files with 145 additions and 36 deletions
+4 -2
View File
@@ -8,6 +8,8 @@
#pragma once
#include <QSharedPointer>
#include <ox/fs/filesystem.hpp>
namespace nostalgia {
@@ -20,8 +22,8 @@ class Project: public QObject {
static QString ROM_FILE;
QString m_path = "";
QByteArray *m_romBuff = nullptr;
ox::fs::FileSystem *m_fs = nullptr;
QSharedPointer<QByteArray> m_romBuff;
QSharedPointer<ox::fs::FileSystem> m_fs;
public:
Project(QString path);