use phosg namespace

This commit is contained in:
Martin Michelsen
2024-07-28 11:54:41 -07:00
parent 5523388ad4
commit 1bfbf09891
116 changed files with 2969 additions and 3088 deletions
+4 -2
View File
@@ -8,6 +8,8 @@
#include <string>
#include <unordered_map>
#include "Types.hh"
class AFSArchive {
public:
AFSArchive(std::shared_ptr<const std::string> data);
@@ -23,12 +25,12 @@ public:
std::pair<const void*, size_t> get(size_t index) const;
std::string get_copy(size_t index) const;
StringReader get_reader(size_t index) const;
phosg::StringReader get_reader(size_t index) const;
static std::string generate(const std::vector<std::string>& files, bool big_endian);
private:
template <bool IsBigEndian>
template <bool BE>
static std::string generate_t(const std::vector<std::string>& files);
std::shared_ptr<const std::string> data;