Skip to content

Instantly share code, notes, and snippets.

@jes
Forked from expipiplus1/gist:1475384
Created December 14, 2011 05:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jes/1475421 to your computer and use it in GitHub Desktop.
Save jes/1475421 to your computer and use it in GitHub Desktop.
template < TerminalEnumType template_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 );
static TokenEnumType m_tokenType = template_type;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment