Fix grammar and Sum bug.
[repair.git] / Repair / RepairInterpreter / list.h
1 #ifndef LIST_H
2 #define LIST_H
3
4 class List {
5  public:
6   List();
7   ~List();
8   void addobject(void *);
9   void toArray(void **);
10   unsigned int size();
11               
12   
13  private:
14   void **array;
15   unsigned int arraysize;
16   unsigned int length;
17 };
18
19 #define INITIAL_LIST_SIZE 10
20 #endif