top
|
up
|
prev
|
next
RefExpr Class
Definition at line
97
of
RegEx.hpp
Constructors
RefExpr
(
const
std::u32string& exprId_)
Member Functions
void
Accept
(
Visitor
& visitor)
override
const
std::u32string&
ExprId
()
const
Member Variables
std::u32string
exprId
Constructor Details
RefExpr Constructor
sng2html::sng2html::RefExpr::RefExpr(
const
std::u32string& exprId_)
Definition at line
89
of
RegEx.cpp
:
89
:
exprId
(
exprId_
)
90
{
91
}
Declaration at line
100
of
RegEx.hpp
Member Function Details
Accept Member Function
void
sng2html::sng2html::RefExpr::Accept(
Visitor
& visitor)
override
Definition at line
93
of
RegEx.cpp
:
94
{
95
visitor
.
Visit
(
*
this
)
;
96
}
Declaration at line
102
of
RegEx.hpp
Base class overridden functions:
sng2html::sng2html::RegExpression::Accept
Calls:
sng2html::sng2html::Visitor::Visit
ExprId Member Function
const
std::u32string& sng2html::sng2html::RefExpr::ExprId()
const
Definition at line
101
of
RegEx.hpp
:
101
{
return
exprId
;
}
Called by:
sng2html::sng2html::GrammarHtmlGeneratorVisitor::Visit
top
|
up
|
prev
|
next