top
|
up
|
prev
|
next
Token Struct
Definition at line
60
of
LexerFile.hpp
Constructors
Token
()
Token
(
const
std::u32string& name_,
const
std::string& info_)
Member Variables
std::string
info
std::u32string
name
Constructor Details
Token Constructor
sng2html::sng2html::Token::Token()
Definition at line
47
of
LexerFile.cpp
:
47
:
name
(
)
,
info
(
)
48
{
49
}
Declaration at line
62
of
LexerFile.hpp
Token Constructor
sng2html::sng2html::Token::Token(
const
std::u32string& name_,
const
std::string& info_)
Definition at line
51
of
LexerFile.cpp
:
51
:
name
(
name_
)
,
info
(
info_
)
52
{
53
}
Declaration at line
63
of
LexerFile.hpp
top
|
up
|
prev
|
next