top | up | prev | next

EmptyParser Class

Definition at line 68 of Parser.hpp

Constructors

EmptyParser()

Member Functions

void Accept(Visitor& visitor) override
Parser* Clone() const override
bool IsEmptyOrEmptyActionParser() const override

Constructor Details

EmptyParser Constructor

sng2html::sng2html::EmptyParser::EmptyParser()

Definition at line 38 of Parser.cpp :
 38 : Parser(U"empty")
 39 {
 40 }


Declaration at line 71 of Parser.hpp


Member Function Details

Accept Member Function

void sng2html::sng2html::EmptyParser::Accept(Visitor & visitor) override

Definition at line 47 of Parser.cpp :
 48 {
 49     visitor.Visit(*this);
 50 }


Declaration at line 73 of Parser.hpp

Base class overridden functions: sng2html::sng2html::Parser::Accept

Calls: sng2html::sng2html::Visitor::Visit


Clone Member Function

Parser * sng2html::sng2html::EmptyParser::Clone() const override

Definition at line 42 of Parser.cpp :
 43 {
 44     return new EmptyParser();
 45 }


Declaration at line 72 of Parser.hpp

Base class overridden functions: sng2html::sng2html::Parser::Clone


IsEmptyOrEmptyActionParser Member Function

bool sng2html::sng2html::EmptyParser::IsEmptyOrEmptyActionParser() const override

Definition at line 74 of Parser.hpp :
 74 { return true; }

Base class overridden functions: sng2html::sng2html::Parser::IsEmptyOrEmptyActionParser


top | up | prev | next