summaryrefslogtreecommitdiffhomepage
path: root/StarsEx/DataSource.h
diff options
context:
space:
mode:
Diffstat (limited to 'StarsEx/DataSource.h')
-rw-r--r--StarsEx/DataSource.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/StarsEx/DataSource.h b/StarsEx/DataSource.h
index e945dff..6809a44 100644
--- a/StarsEx/DataSource.h
+++ b/StarsEx/DataSource.h
@@ -9,7 +9,7 @@
#include <cstdint>
-#include "Archive.h"
+#include <Archive.h>
#include "List.h"
#include "Text.h"
@@ -38,7 +38,7 @@ class ArchiveDataSource : public DataSource
{
public:
explicit ArchiveDataSource(const char* name);
- explicit ArchiveDataSource(DataArchive* archive);
+ explicit ArchiveDataSource(ArchiveEx::Archive* archive);
~ArchiveDataSource() override;
bool Find(const Text& prefix, const char* name) const override;
@@ -46,7 +46,7 @@ public:
int Load(const Text& prefix, const char* name, std::uint8_t*& buf, bool null_terminate=false) const override;
protected:
- DataArchive* m_archive;
+ ArchiveEx::Archive* m_archive;
};