Moved the interpreter
[repair.git] / Repair / RepairInterpreter / list.h
diff --git a/Repair/RepairInterpreter/list.h b/Repair/RepairInterpreter/list.h
new file mode 100755 (executable)
index 0000000..42d3105
--- /dev/null
@@ -0,0 +1,20 @@
+#ifndef LIST_H
+#define LIST_H
+
+class List {
+ public:
+  List();
+  ~List();
+  void addobject(void *);
+  void toArray(void **);
+  unsigned int size();
+             
+  
+ private:
+  void **array;
+  unsigned int arraysize;
+  unsigned int length;
+};
+
+#define INITIAL_LIST_SIZE 10
+#endif