Skip to content

Instantly share code, notes, and snippets.

@expipiplus1
Created December 14, 2011 05:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save expipiplus1/1475384 to your computer and use it in GitHub Desktop.
Save expipiplus1/1475384 to your computer and use it in GitHub Desktop.
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