top | up | prev | next

Parameter Struct

Definition at line 230 of Parser.hpp

Constructors

Parameter(soulng::cppcode::TypeId* type_, const std::u32string& name_)
Parameter(soulng::cppcode::TypeId* type_, const std::u32string& name_, bool variable_)

Member Variables

std::u32string name
std::unique_ptr<soulng::cppcode::TypeId> type
bool variable

Constructor Details

Parameter Constructor

sng2html::sng2html::Parameter::Parameter(soulng::cppcode::TypeId* type_, const std::u32string& name_)

Definition at line 298 of Parser.cpp :
298 : type(type_)name(name_)variable(false)
299 {
300 }


Declaration at line 232 of Parser.hpp


Parameter Constructor

sng2html::sng2html::Parameter::Parameter(soulng::cppcode::TypeId* type_, const std::u32string& name_, bool variable_)

Definition at line 302 of Parser.cpp :
302 : type(type_)name(name_)variable(variable_)
303 {
304 }


Declaration at line 233 of Parser.hpp


top | up | prev | next