summaryrefslogtreecommitdiff
path: root/binparse/parse.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'binparse/parse.hpp')
-rw-r--r--binparse/parse.hpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/binparse/parse.hpp b/binparse/parse.hpp
index 8015ba3..2103177 100644
--- a/binparse/parse.hpp
+++ b/binparse/parse.hpp
@@ -11,6 +11,7 @@
#include <stdexcept>
#include <array>
#include <vector>
+#include <string>
namespace binparse {
@@ -48,6 +49,9 @@ template<>
Offset32 parse<Offset32>(std::istream& is, std::string name);
template<>
+PString8 parse<PString8>(std::istream& is, std::string name);
+
+template<>
std::array<uint8_t, 8> parse<std::array<uint8_t, 8>>(std::istream& is, std::string name);
template<>