#include <ss_type.g.hh>
Inheritance diagram for lestes::lang::cplus::sem::ss_const_volatile:

Public Member Functions | |
| ptr< ss_type > | what_get () const |
| The method what_get returns the value of the field ss_const_volatile::what. | |
| void | what_set (const ptr< ss_type > &) |
| The method what_set sets the field ss_const_volatile::what to the given value. | |
| virtual bool | is_void () |
| Is this type void? | |
| virtual bool | is_volatile () |
| Is this type volatile? | |
| virtual ptr< ::lestes::std::list< srp< or_ics_functional > > > | accept_or_ics_base (ptr< or_ics_base > v) |
| virtual or_cv_enum | accept_or_ics_base_cv (ptr< or_ics_base_cv > v) |
| virtual ptr< ::lestes::md::types::tm_data_type_base > | accept_ss_type2tm_type_gen_base (ptr< ss_type2tm_type_gen_base > v) |
| virtual void | accept_ss_type_visitor (ptr< ss_type_visitor > v) |
| virtual ptr< reflection_list > | reflection_get () const |
| for purposes of dumping | |
| virtual ptr< field_list_list > | field_values_get () const |
| for purposes of dumping | |
Static Public Member Functions | |
| static ptr< ss_const_volatile > | create (ptr< ss_type > a__ss_const_volatile__what) |
| First generated factory method for class ss_const_volatile. | |
Protected Member Functions | |
| ss_const_volatile (ptr< ss_type > a__ss_const_volatile__what) | |
| Generated constructor for class ss_const_volatile. | |
| virtual void | gc_mark () |
| Marking routine for class ss_const_volatile. | |
Private Attributes | |
| srp< ss_type > | what |
Static Private Attributes | |
| static ptr< reflection_list > | reflection = reflection |
Singleton class
Definition at line 289 of file ss_type.g.hh.
| lestes::lang::cplus::sem::ss_const_volatile::ss_const_volatile | ( | ptr< ss_type > | a__ss_const_volatile__what | ) | [protected] |
Generated constructor for class ss_const_volatile.
Generated constructor for class ss_const_volatile.
Definition at line 355 of file ss_type.g.cc.
Referenced by create().
| ptr< ss_type > lestes::lang::cplus::sem::ss_const_volatile::what_get | ( | ) | const |
The method what_get returns the value of the field ss_const_volatile::what.
Definition at line 308 of file ss_type.g.cc.
References what.
00309 { 00310 return what; 00311 }
| void lestes::lang::cplus::sem::ss_const_volatile::what_set | ( | const ptr< ss_type > & | x | ) |
The method what_set sets the field ss_const_volatile::what to the given value.
| [in] | x | The new value to set ss_const_volatile::what to. |
Definition at line 317 of file ss_type.g.cc.
References what.
00318 { 00319 ss_const_volatile::what = x; 00320 }
| bool lestes::lang::cplus::sem::ss_const_volatile::is_void | ( | ) | [virtual] |
Is this type void?
Used for genarating pi calls. Differentiate between call and callv. Generic case returns false;
Reimplemented from lestes::lang::cplus::sem::ss_type.
Definition at line 86 of file ss_type.cc.
References what.
00087 { 00088 return what->is_void(); 00089 }
| bool lestes::lang::cplus::sem::ss_const_volatile::is_volatile | ( | ) | [virtual] |
Is this type volatile?
Used for generating side effects. Returns true.
Reimplemented from lestes::lang::cplus::sem::ss_type.
Definition at line 113 of file ss_type.cc.
| ptr<::lestes::std::list< srp< or_ics_functional > > > lestes::lang::cplus::sem::ss_const_volatile::accept_or_ics_base | ( | ptr< or_ics_base > | v | ) | [virtual] |
| or_cv_enum lestes::lang::cplus::sem::ss_const_volatile::accept_or_ics_base_cv | ( | ptr< or_ics_base_cv > | v | ) | [virtual] |
| ptr<::lestes::md::types::tm_data_type_base > lestes::lang::cplus::sem::ss_const_volatile::accept_ss_type2tm_type_gen_base | ( | ptr< ss_type2tm_type_gen_base > | v | ) | [virtual] |
| void lestes::lang::cplus::sem::ss_const_volatile::accept_ss_type_visitor | ( | ptr< ss_type_visitor > | v | ) | [virtual] |
| ptr< ss_const_volatile > lestes::lang::cplus::sem::ss_const_volatile::create | ( | ptr< ss_type > | a__ss_const_volatile__what | ) | [static] |
First generated factory method for class ss_const_volatile.
This factory method for class ss_const_volatile takes values of all fields as arguments.
Definition at line 346 of file ss_type.g.cc.
References ss_const_volatile().
00347 { 00348 return ptr< ss_const_volatile > ( new ss_const_volatile(a__ss_const_volatile__what) ); 00349 }
| ptr< object::reflection_list > lestes::lang::cplus::sem::ss_const_volatile::reflection_get | ( | ) | const [virtual] |
for purposes of dumping
Reimplemented from lestes::lang::cplus::sem::ss_type.
Definition at line 359 of file ss_type.g.cc.
References lestes::std::list< T >::create(), reflection, and lestes::lang::cplus::sem::ss_type::reflection_get().
00360 { 00361 if (!reflection) { 00362 typedef class_reflection::field_metadata md; 00363 typedef class_reflection::field_metadata_list mdlist; 00364 ptr<mdlist> mdl = mdlist::create(); 00365 mdl->push_back( md::create( "what", "ss_type" ) ); 00366 reflection = reflection_list::create( ss_type::reflection_get() ); 00367 reflection->push_back( class_reflection::create( "ss_const_volatile", mdl ) ); 00368 } 00369 return reflection; 00370 }
| ptr< object::field_list_list > lestes::lang::cplus::sem::ss_const_volatile::field_values_get | ( | ) | const [virtual] |
for purposes of dumping
Reimplemented from lestes::lang::cplus::sem::ss_type.
Definition at line 372 of file ss_type.g.cc.
References lestes::std::list< T >::create(), and lestes::lang::cplus::sem::ss_type::field_values_get().
00373 { 00374 ptr < field_list_list > result = ss_type::field_values_get(); 00375 result->push_back( value_list::create() ); 00376 result->back()->push_back( this->what ); 00377 return result; 00378 }
| void lestes::lang::cplus::sem::ss_const_volatile::gc_mark | ( | void | ) | [protected, virtual] |
Marking routine for class ss_const_volatile.
Marking routine is used for garbage collection.
Reimplemented from lestes::lang::cplus::sem::ss_type.
Definition at line 385 of file ss_type.g.cc.
References lestes::lang::cplus::sem::ss_type::gc_mark().
00386 { 00387 ss_type::gc_mark(); 00388 }
srp< ss_type > lestes::lang::cplus::sem::ss_const_volatile::what [private] |
ptr< object::reflection_list > lestes::lang::cplus::sem::ss_const_volatile::reflection = reflection [static, private] |
Reimplemented from lestes::lang::cplus::sem::ss_type.
Definition at line 346 of file ss_type.g.hh.
Referenced by reflection_get().
1.5.1-20070107