#include <hinter_actions.g.hh>
Inheritance diagram for lestes::lang::cplus::syn::pop_state_action:

Public Member Functions | |
| virtual void | run () |
| 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< pop_state_action > | instance () |
| Generated instance() method for singleton class pop_state_action. | |
Protected Member Functions | |
| pop_state_action () | |
| Generated constructor for class pop_state_action. | |
| virtual void | gc_mark () |
| Marking routine for class pop_state_action. | |
Static Private Attributes | |
| static ptr< reflection_list > | reflection = reflection |
| static ptr< pop_state_action > | the_instance = the_instance |
Definition at line 118 of file hinter_actions.g.hh.
| lestes::lang::cplus::syn::pop_state_action::pop_state_action | ( | ) | [protected] |
Generated constructor for class pop_state_action.
Generated constructor for class pop_state_action.
Definition at line 202 of file hinter_actions.g.cc.
Referenced by instance().
00203 : action() 00204 {}
| void lestes::lang::cplus::syn::pop_state_action::run | ( | ) | [virtual] |
Implements lestes::std::action.
Definition at line 244 of file hinter.cc.
References lestes::lang::cplus::syn::hinter_stack, and lassert.
00245 { 00246 lassert( !hinter_stack->empty() ); 00247 hinter_stack->back()->pop_state(); 00248 }
| ptr< pop_state_action > lestes::lang::cplus::syn::pop_state_action::instance | ( | void | ) | [static] |
Generated instance() method for singleton class pop_state_action.
Generated instance() method for singleton class pop_state_action.
Definition at line 193 of file hinter_actions.g.cc.
References pop_state_action(), and the_instance.
Referenced by lestes::lang::cplus::syn::hinter::init().
00194 { 00195 return the_instance ? the_instance : the_instance = new pop_state_action(); 00196 }
| ptr< object::reflection_list > lestes::lang::cplus::syn::pop_state_action::reflection_get | ( | ) | const [virtual] |
for purposes of dumping
Reimplemented from lestes::std::action.
Definition at line 206 of file hinter_actions.g.cc.
References lestes::std::list< T >::create(), reflection, and lestes::std::action::reflection_get().
00207 { 00208 if (!reflection) { 00209 typedef class_reflection::field_metadata md; 00210 typedef class_reflection::field_metadata_list mdlist; 00211 ptr<mdlist> mdl = mdlist::create(); 00212 reflection = reflection_list::create( ::lestes::std::action::reflection_get() ); 00213 reflection->push_back( class_reflection::create( "pop_state_action", mdl ) ); 00214 } 00215 return reflection; 00216 }
| ptr< object::field_list_list > lestes::lang::cplus::syn::pop_state_action::field_values_get | ( | ) | const [virtual] |
for purposes of dumping
Reimplemented from lestes::std::action.
Definition at line 218 of file hinter_actions.g.cc.
References lestes::std::action::field_values_get().
00219 { 00220 ptr < field_list_list > result = ::lestes::std::action::field_values_get(); 00221 return result; 00222 }
| void lestes::lang::cplus::syn::pop_state_action::gc_mark | ( | void | ) | [protected, virtual] |
Marking routine for class pop_state_action.
Marking routine is used for garbage collection.
Reimplemented from lestes::std::action.
Definition at line 229 of file hinter_actions.g.cc.
References lestes::std::action::gc_mark().
00230 { 00231 ::lestes::std::action::gc_mark(); 00232 }
ptr< object::reflection_list > lestes::lang::cplus::syn::pop_state_action::reflection = reflection [static, private] |
Reimplemented from lestes::std::action.
Definition at line 142 of file hinter_actions.g.hh.
Referenced by reflection_get().
ptr< pop_state_action > lestes::lang::cplus::syn::pop_state_action::the_instance = the_instance [static, private] |
Static field pop_state_action::the_instance.
Definition at line 143 of file hinter_actions.g.hh.
Referenced by instance().
1.5.1-20070107