summaryrefslogtreecommitdiff
path: root/inc
diff options
context:
space:
mode:
Diffstat (limited to 'inc')
-rw-r--r--inc/Frame.hpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/inc/Frame.hpp b/inc/Frame.hpp
index 0bfce2c..ad9ef99 100644
--- a/inc/Frame.hpp
+++ b/inc/Frame.hpp
@@ -6,6 +6,7 @@
#include <string>
#include <fstream>
#include <iostream>
+#include <vector>
using namespace std;
@@ -35,9 +36,10 @@ class Frame
int height, width;
int row, col;
bool hasSuper;
+ bool colored = false;
WINDOW * w;
WINDOW * super;
- string m;
+ vector <string> m;
};
#endif