Replace Action with Action* so can be polymorphic

This commit is contained in:
Keith Winstein
2011-01-13 00:44:07 -05:00
parent 82ac626320
commit 59f000cdce
7 changed files with 123 additions and 107 deletions
+1 -1
View File
@@ -25,7 +25,7 @@ namespace Parser {
bool operator=( const Parser & );
~Parser() {}
std::vector<Action> input( wchar_t c );
std::vector<Action *> input( wchar_t c );
};
}