#include <hinter_actions.g.hh>
Inheritance diagram for lestes::lang::cplus::syn::spawn_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< spawn_hinter_action > | instance () |
| Generated instance() method for singleton class spawn_hinter_action. | |
Protected Member Functions | |
| spawn_hinter_action () | |
| Generated constructor for class spawn_hinter_action. | |
| virtual void | gc_mark () |
| Marking routine for class spawn_hinter_action. | |
Static Private Attributes | |
| static ptr< reflection_list > | reflection = reflection |
| static ptr< spawn_hinter_action > | the_instance = the_instance |
Definition at line 28 of file hinter_actions.g.hh.
| lestes::lang::cplus::syn::spawn_hinter_action::spawn_hinter_action | ( | ) | [protected] |
Generated constructor for class spawn_hinter_action.
Generated constructor for class spawn_hinter_action.
Definition at line 37 of file hinter_actions.g.cc.
Referenced by instance().
00038 : action() 00039 {}
| void lestes::lang::cplus::syn::spawn_hinter_action::run | ( | ) | [virtual] |
Implements lestes::std::action.
Definition at line 226 of file hinter.cc.
References lestes::lang::cplus::syn::one_hinter::create(), and lestes::lang::cplus::syn::hinter_stack.
00227 { 00228 hinter_stack->push_back( one_hinter::create() ); 00229 }
| ptr< spawn_hinter_action > lestes::lang::cplus::syn::spawn_hinter_action::instance | ( | void | ) | [static] |
Generated instance() method for singleton class spawn_hinter_action.
Generated instance() method for singleton class spawn_hinter_action.
Definition at line 28 of file hinter_actions.g.cc.
References spawn_hinter_action(), and the_instance.
Referenced by lestes::lang::cplus::syn::hinter::init().
00029 { 00030 return the_instance ? the_instance : the_instance = new spawn_hinter_action(); 00031 }
| ptr< object::reflection_list > lestes::lang::cplus::syn::spawn_hinter_action::reflection_get | ( | ) | const [virtual] |
for purposes of dumping
Reimplemented from lestes::std::action.
Definition at line 41 of file hinter_actions.g.cc.
References lestes::std::list< T >::create(), reflection, and lestes::std::action::reflection_get().
00042 { 00043 if (!reflection) { 00044 typedef class_reflection::field_metadata md; 00045 typedef class_reflection::field_metadata_list mdlist; 00046 ptr<mdlist> mdl = mdlist::create(); 00047 reflection = reflection_list::create( ::lestes::std::action::reflection_get() ); 00048 reflection->push_back( class_reflection::create( "spawn_hinter_action", mdl ) ); 00049 } 00050 return reflection; 00051 }
| ptr< object::field_list_list > lestes::lang::cplus::syn::spawn_hinter_action::field_values_get | ( | ) | const [virtual] |
for purposes of dumping
Reimplemented from lestes::std::action.
Definition at line 53 of file hinter_actions.g.cc.
References lestes::std::action::field_values_get().
00054 { 00055 ptr < field_list_list > result = ::lestes::std::action::field_values_get(); 00056 return result; 00057 }
| void lestes::lang::cplus::syn::spawn_hinter_action::gc_mark | ( | void | ) | [protected, virtual] |
Marking routine for class spawn_hinter_action.
Marking routine is used for garbage collection.
Reimplemented from lestes::std::action.
Definition at line 64 of file hinter_actions.g.cc.
References lestes::std::action::gc_mark().
00065 { 00066 ::lestes::std::action::gc_mark(); 00067 }
ptr< object::reflection_list > lestes::lang::cplus::syn::spawn_hinter_action::reflection = reflection [static, private] |
Reimplemented from lestes::std::action.
Definition at line 52 of file hinter_actions.g.hh.
Referenced by reflection_get().
ptr< spawn_hinter_action > lestes::lang::cplus::syn::spawn_hinter_action::the_instance = the_instance [static, private] |
Static field spawn_hinter_action::the_instance.
Definition at line 53 of file hinter_actions.g.hh.
Referenced by instance().
1.5.1-20070107