aboutsummaryrefslogtreecommitdiff
path: root/src/ARCodeFile.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/ARCodeFile.h')
-rw-r--r--src/ARCodeFile.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/ARCodeFile.h b/src/ARCodeFile.h
index 548bfeb..374c56e 100644
--- a/src/ARCodeFile.h
+++ b/src/ARCodeFile.h
@@ -19,7 +19,7 @@
#ifndef ARCODEFILE_H
#define ARCODEFILE_H
-#include <vector>
+#include <list>
#include "types.h"
@@ -32,7 +32,7 @@ typedef struct
} ARCode;
-typedef std::vector<ARCode> ARCodeList;
+typedef std::list<ARCode> ARCodeList;
typedef struct
{
@@ -41,7 +41,7 @@ typedef struct
} ARCodeCat;
-typedef std::vector<ARCodeCat> ARCodeCatList;
+typedef std::list<ARCodeCat> ARCodeCatList;
class ARCodeFile
@@ -52,6 +52,7 @@ public:
bool Error;
+ bool Load();
bool Save();
ARCodeCatList Categories;