top
|
up
|
prev
|
next
Any Class
Definition at line
40
of
Symbol.hpp
Constructors
Any
()
Member Functions
void
Accept
(
Visitor
& visitor)
override
bool
IsAny
()
const override
Constructor Details
Any Constructor
sng2html::sng2html::Any::Any()
Definition at line
27
of
Symbol.cpp
:
28
{
29
}
Declaration at line
43
of
Symbol.hpp
Member Function Details
Accept Member Function
void
sng2html::sng2html::Any::Accept(
Visitor
& visitor)
override
Definition at line
31
of
Symbol.cpp
:
32
{
33
visitor
.
Visit
(
*
this
)
;
34
}
Declaration at line
44
of
Symbol.hpp
Base class overridden functions:
sng2html::sng2html::Symbol::Accept
Calls:
sng2html::sng2html::Visitor::Visit
IsAny Member Function
bool
sng2html::sng2html::Any::IsAny()
const override
Definition at line
45
of
Symbol.hpp
:
45
{
return
true
;
}
Base class overridden functions:
sng2html::sng2html::Symbol::IsAny
top
|
up
|
prev
|
next