Created
December 14, 2011 05:14
-
-
Save expipiplus1/1475367 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 <std::string literal, std::string name = literal> | |
class LiteralTerminal : public JoeLang::Parser::Terminal | |
{ | |
public: | |
LiteralTerminal() = default; | |
virtual ~LiteralTerminal() = default; | |
static std::unique_ptr< LiteralTerminal< literal, name > > Parse(std::basic_string::const_iterator &stream_begin, std::string::const_iterator stream_end ); | |
static std::string GetName(); | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment