DEADSOFTWARE

Move endian-ness detection into Reader class
[odcread.git] / reader / reader.h
index e59f36c2417bf4bdaffad708f99984fcb0250799..eb593b5859c074ea74410895d5da467668720164 100644 (file)
@@ -4,9 +4,9 @@
 #include <iostream>
 #include <vector>
 
-#include <oberon.h>
-#include <store.h>
-#include <alien.h>
+#include "oberon.h"
+#include "store/store.h"
+#include "alien/alien.h"
 
 namespace odc {
 
@@ -225,6 +225,10 @@ private:
         * Add another component to the current path. If first==true, start a new path.
         */
        void addPathComponent(bool first, const std::string &typeName);
+
+       static bool isBigEndian();
+       static bool isLittleEndian();
+
 };
 
 } // namespace odc