#include <argument_holder.hh>
Inheritance diagram for lestes::msg::argument_holder33< P0, P1, P2 >:

Public Types | |
| typedef convert< P2 >::to_ptr | p2_type |
Public Member Functions | |
| p2_type | p2_get (void) const |
| Returns the second argument. | |
Static Public Member Functions | |
| static ptr< argument_holder33< P0, P1, P2 > > | create (const ptr< argument_holder32< P0, P1, P2 > > &parent, const p2_type &a_p2) |
| Returns the holder. | |
Protected Member Functions | |
| argument_holder33 (const ptr< argument_holder32< P0, P1, P2 > > &parent, const p2_type &a_p2) | |
| Creates the holder. | |
| void | gc_mark (void) |
| Marks the object. | |
Private Member Functions | |
| argument_holder33 (const argument_holder33< P0, P1, P2 > &) | |
| Hides copy constructor. | |
| argument_holder33< P0, P1, P2 > & | operator= (const argument_holder33< P0, P1, P2 > &) |
| Hides assignment operator. | |
Private Attributes | |
| convert< P2 >::to_srp | p2 |
| The second argument. | |
Holder for three arguments with three arguments filled.
| P0 | The type of the zeroth argument. | |
| P1 | The type of the first argument. | |
| P2 | The type of the second argument. |
Definition at line 876 of file argument_holder.hh.
| typedef convert<P2>::to_ptr lestes::msg::argument_holder33< P0, P1, P2 >::p2_type |
Definition at line 878 of file argument_holder.hh.
| lestes::msg::argument_holder33< P0, P1, P2 >::argument_holder33 | ( | const ptr< argument_holder32< P0, P1, P2 > > & | parent, | |
| const p2_type & | a_p2 | |||
| ) | [inline, protected] |
| lestes::msg::argument_holder33< P0, P1, P2 >::argument_holder33 | ( | const argument_holder33< P0, P1, P2 > & | ) | [private] |
Hides copy constructor.
| argument_holder33< P0, P1, P2 >::p2_type lestes::msg::argument_holder33< P0, P1, P2 >::p2_get | ( | void | ) | const [inline] |
Returns the second argument.
Returns the second argument.
Definition at line 914 of file argument_holder.hh.
References lestes::msg::argument_holder33< P0, P1, P2 >::p2.
00915 { 00916 return p2; 00917 }
| ptr< argument_holder33< P0, P1, P2 > > lestes::msg::argument_holder33< P0, P1, P2 >::create | ( | const ptr< argument_holder32< P0, P1, P2 > > & | parent, | |
| const p2_type & | a_p2 | |||
| ) | [inline, static] |
Returns the holder.
Returns holder for three arguments.
| a_parent | The parent of this holder. | |
| a_p2 | The second argument for the message. |
Definition at line 927 of file argument_holder.hh.
| void lestes::msg::argument_holder33< P0, P1, P2 >::gc_mark | ( | void | ) | [inline, protected] |
Marks the object.
Marks the object for garbage collection.
Reimplemented from lestes::msg::argument_holder32< P0, P1, P2 >.
Definition at line 937 of file argument_holder.hh.
References lestes::gc_mark_srp(), and lestes::msg::argument_holder33< P0, P1, P2 >::p2.
00938 { 00939 gc_mark_srp(p2); 00940 argument_holder32<P0,P1,P2>::gc_mark(); 00941 }
| argument_holder33<P0,P1,P2>& lestes::msg::argument_holder33< P0, P1, P2 >::operator= | ( | const argument_holder33< P0, P1, P2 > & | ) | [private] |
Hides assignment operator.
convert<P2>::to_srp lestes::msg::argument_holder33< P0, P1, P2 >::p2 [private] |
The second argument.
Definition at line 890 of file argument_holder.hh.
Referenced by lestes::msg::argument_holder33< P0, P1, P2 >::gc_mark(), and lestes::msg::argument_holder33< P0, P1, P2 >::p2_get().
1.5.1-20070107