Move parser outside of terminal emulator -- prepare for keyboard input
This commit is contained in:
+13
-8
@@ -1,3 +1,4 @@
|
||||
#include <list>
|
||||
#include <vector>
|
||||
#include <deque>
|
||||
#include <wchar.h>
|
||||
@@ -9,11 +10,15 @@ namespace Parser {
|
||||
class Action;
|
||||
}
|
||||
|
||||
template class std::vector<Parser::Action *>;
|
||||
template class std::vector<Terminal::Cell>;
|
||||
template class std::deque<Terminal::Row>;
|
||||
template class std::vector<Terminal::Cell *>;
|
||||
template class std::vector<wchar_t>;
|
||||
template class std::vector<int>;
|
||||
template class std::map<std::string, Terminal::Function>;
|
||||
template class std::vector<bool>;
|
||||
using namespace std;
|
||||
using namespace Terminal;
|
||||
|
||||
template class list<Parser::Action *>;
|
||||
template class vector<Cell>;
|
||||
template class deque<Row>;
|
||||
template class vector<Cell *>;
|
||||
template class vector<wchar_t>;
|
||||
template class vector<int>;
|
||||
template class map<string, Function>;
|
||||
template class vector<bool>;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user