This commit is contained in:
Daniel Sipka 2015-04-13 02:15:51 +02:00
parent 61a700479d
commit 244477f0a0
20 changed files with 140 additions and 231 deletions

View file

@ -4,20 +4,20 @@
#include <string>
namespace mstch {
enum class token_type {
text, variable, section_open, section_close, inverted_section_open,
unescaped_variable, comment, partial
};
class token {
public:
enum class type {
text, variable, section_open, section_close, inverted_section_open,
unescaped_variable, comment, partial
};
private:
token_type type_val;
type type_val;
std::string content_val;
std::string raw_val;
std::tuple<int,int,type> token_info(const std::string& inside);
public:
token(const std::string& raw_token);
token_type type() const;
type token_type() const;
std::string content() const;
std::string raw() const;
};