From 5310ea3564fe98b2940a63b72621b79de9290f77 Mon Sep 17 00:00:00 2001 From: Aki Date: Sun, 11 Sep 2022 19:19:32 +0200 Subject: Replaced Datafile and StarsEx/Archive with dat and ArchiveEx --- StarsEx/DataSource.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'StarsEx/DataSource.h') 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 -#include "Archive.h" +#include #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; }; -- cgit v1.1