top | up | prev | next

Tokens Class

Definition at line 68 of LexerFile.hpp

Constructors

Tokens(const std::u32string& name_)

Member Functions

void Add(const Token& token)

Member Variables

std::vector<Token> tokens

Constructor Details

Tokens Constructor

sng2html::sng2html::Tokens::Tokens(const std::u32string& name_)

Definition at line 55 of LexerFile.cpp :
 55 : Declaration(name_)
 56 {
 57 }


Declaration at line 71 of LexerFile.hpp


Member Function Details

Add Member Function

void sng2html::sng2html::Tokens::Add(const Token & token)

Definition at line 59 of LexerFile.cpp :
 60 {
 61     tokens.push_back(token);
 62 }


Declaration at line 72 of LexerFile.hpp


top | up | prev | next