Created
December 14, 2011 05:20
-
-
Save expipiplus1/1475384 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
template < TerminalEnumType token_type > | |
class Terminal : public JoeLang::Parser::Token | |
{ | |
public: | |
Terminal() = default; | |
virtual ~Terminal() = default; | |
static Terminal< template_type >* Parse( vector<Token*>::const_iterator& stream_begin, vector<Token*>::const_iterator stream_end ); | |
TokenEnumType m_tokenType = token_type; | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment