DEADSOFTWARE

fix gcc 4.0
[odcread.git] / alien / alien.h
index 77db1febc2239e3d12886ff7ee8e44e2a8edc90f..099364f8fa3c020c30f9eae89b5fde6fd0508623 100644 (file)
@@ -1,15 +1,15 @@
 #ifndef _ALIEN_H_
 #define _ALIEN_H_
 
-#include <oberon.h>
-#include <store.h>
-#include <visitor.h>
-#include <iostream>
+#include "oberon.h"
+#include "store/store.h"
 #include <vector>
 #include <string>
 
 namespace odc {
 
+class Visitor;
+
 /**
  * Part of an alien store
  */
@@ -22,8 +22,8 @@ struct AlienComponent {
  * Totally unstructured part of an alien store
  */
 struct AlienPiece : public AlienComponent {
-       const char * const data;
-       const size_t len;
+       char const * const data;
+       size_t const len;
 
        AlienPiece(const char * const data, const size_t len);