#include <hinter_actions.g.hh>
Inheritance diagram for lestes::lang::cplus::syn::close_hinter_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< close_hinter_action > | instance () |
| Generated instance() method for singleton class close_hinter_action. | |
Protected Member Functions | |
| close_hinter_action () | |
| Generated constructor for class close_hinter_action. | |
| virtual void | gc_mark () |
| Marking routine for class close_hinter_action. | |
Static Private Attributes | |
| static ptr< reflection_list > | reflection = reflection |
| static ptr< close_hinter_action > | the_instance = the_instance |
Definition at line 58 of file hinter_actions.g.hh.
| lestes::lang::cplus::syn::close_hinter_action::close_hinter_action | ( | ) | [protected] |
Generated constructor for class close_hinter_action.
Generated constructor for class close_hinter_action.
Definition at line 92 of file hinter_actions.g.cc.
Referenced by instance().
00093 : action() 00094 {}
| void lestes::lang::cplus::syn::close_hinter_action::run | ( | ) | [virtual] |
Implements lestes::std::action.
Definition at line 231 of file hinter.cc.
References lestes::lang::cplus::syn::hinter_stack, and lassert.
00232 { 00233 lassert( !hinter_stack->empty() ); 00234 hinter_stack->pop_back(); 00235 lassert( !hinter_stack->empty() ); 00236 }
| ptr< close_hinter_action > lestes::lang::cplus::syn::close_hinter_action::instance | ( | void | ) | [static] |
Generated instance() method for singleton class close_hinter_action.
Generated instance() method for singleton class close_hinter_action.
Definition at line 83 of file hinter_actions.g.cc.
References close_hinter_action(), and the_instance.
Referenced by lestes::lang::cplus::syn::hinter::init().
00084 { 00085 return the_instance ? the_instance : the_instance = new close_hinter_action(); 00086 }
| ptr< object::reflection_list > lestes::lang::cplus::syn::close_hinter_action::reflection_get | ( | ) | const [virtual] |
for purposes of dumping
Reimplemented from lestes::std::action.
Definition at line 96 of file hinter_actions.g.cc.
References lestes::std::list< T >::create(), reflection, and lestes::std::action::reflection_get().
00097 { 00098 if (!reflection) { 00099 typedef class_reflection::field_metadata md; 00100 typedef class_reflection::field_metadata_list mdlist; 00101 ptr<mdlist> mdl = mdlist::create(); 00102 reflection = reflection_list::create( ::lestes::std::action::reflection_get() ); 00103 reflection->push_back( class_reflection::create( "close_hinter_action", mdl ) ); 00104 } 00105 return reflection; 00106 }
| ptr< object::field_list_list > lestes::lang::cplus::syn::close_hinter_action::field_values_get | ( | ) | const [virtual] |
for purposes of dumping
Reimplemented from lestes::std::action.
Definition at line 108 of file hinter_actions.g.cc.
References lestes::std::action::field_values_get().
00109 { 00110 ptr < field_list_list > result = ::lestes::std::action::field_values_get(); 00111 return result; 00112 }
| void lestes::lang::cplus::syn::close_hinter_action::gc_mark | ( | void | ) | [protected, virtual] |
Marking routine for class close_hinter_action.
Marking routine is used for garbage collection.
Reimplemented from lestes::std::action.
Definition at line 119 of file hinter_actions.g.cc.
References lestes::std::action::gc_mark().
00120 { 00121 ::lestes::std::action::gc_mark(); 00122 }
ptr< object::reflection_list > lestes::lang::cplus::syn::close_hinter_action::reflection = reflection [static, private] |
Reimplemented from lestes::std::action.
Definition at line 82 of file hinter_actions.g.hh.
Referenced by reflection_get().
ptr< close_hinter_action > lestes::lang::cplus::syn::close_hinter_action::the_instance = the_instance [static, private] |
Static field close_hinter_action::the_instance.
Definition at line 83 of file hinter_actions.g.hh.
Referenced by instance().
1.5.1-20070107