#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
*/
* 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);