summaryrefslogtreecommitdiff
path: root/binparse/parse.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'binparse/parse.hpp')
-rw-r--r--binparse/parse.hpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/binparse/parse.hpp b/binparse/parse.hpp
index e02b230..5c641d8 100644
--- a/binparse/parse.hpp
+++ b/binparse/parse.hpp
@@ -49,6 +49,9 @@ template<>
Offset16 parse<Offset16>(std::istream& is, std::string name);
template<>
+Value24 parse<Value24>(std::istream& is, std::string name);
+
+template<>
Value32 parse<Value32>(std::istream& is, std::string name);
template<>
@@ -58,6 +61,9 @@ template<>
PString8 parse<PString8>(std::istream& is, std::string name);
template<>
+std::array<uint8_t, 3> parse<std::array<uint8_t, 3>>(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<>