aboutsummaryrefslogtreecommitdiffstats
path: root/src/mainwindow.h
diff options
context:
space:
mode:
authorConfuSomu2022-12-26 17:41:45 -0500
committerConfuSomu2022-12-26 17:41:45 -0500
commit477a7257e3aaec13dac7096ab91749399543502e (patch)
treee686b608a3a4039cd032796d0790a5ccd373f476 /src/mainwindow.h
parent0063f4f7885fe33b99728434241f6ef28168b245 (diff)
downloadActorViewer-477a7257e3aaec13dac7096ab91749399543502e.tar
ActorViewer-477a7257e3aaec13dac7096ab91749399543502e.tar.gz
ActorViewer-477a7257e3aaec13dac7096ab91749399543502e.zip
Implement initial archive parsing
Diffstat (limited to 'src/mainwindow.h')
-rw-r--r--src/mainwindow.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/mainwindow.h b/src/mainwindow.h
index d9c62bf..2cbb9df 100644
--- a/src/mainwindow.h
+++ b/src/mainwindow.h
@@ -4,6 +4,8 @@
#include <QMainWindow>
#include <qobjectdefs.h>
+#include "archive_parser.h"
+
struct ViewTootTypes {
bool includePublic = true;
bool includeUnlisted = true;
@@ -43,5 +45,7 @@ private:
QString outbox_filename;
ViewTootTypes view_filters;
+
+ Archive *data_archive = nullptr;
};
#endif // MAINWINDOW_H