![]() |
|
|
Generated: 18 Jul 2008 |
#include <NTuple.h>
Inheritance diagram for NTuple::Item< bool >:


Definition at line 297 of file NTuple.h.
Public Member Functions | |
| Item () | |
| Standard Constructor. | |
| operator const bool () const | |
| Automatic type conversion. | |
| Item & | operator= (const bool data) |
| Assignment operator. | |
| template<class T> | |
| Item & | operator= (const Item< T > &data) |
| Assignment operator. | |
Private Types | |
| typedef Item< bool > | _My |
typedef Item<bool> NTuple::Item< bool >::_My [private] |
| NTuple::Item< bool >::Item | ( | ) | [inline] |
| NTuple::Item< bool >::operator const bool | ( | ) | const [inline] |
Automatic type conversion.
Definition at line 303 of file NTuple.h.
References NTuple::_Accessor< TYP >::m_ptr.
00303 { return this->m_ptr->get(); }
| Item& NTuple::Item< bool >::operator= | ( | const bool | data | ) | [inline] |
Assignment operator.
Definition at line 305 of file NTuple.h.
References NTuple::_Accessor< TYP >::m_ptr.
00305 { 00306 this->m_ptr->set( data ); 00307 return *this; 00308 }
| Item& NTuple::Item< bool >::operator= | ( | const Item< T > & | data | ) | [inline] |
Assignment operator.
Definition at line 311 of file NTuple.h.
References NTuple::_Accessor< TYP >::m_ptr.
00311 { 00312 this->m_ptr->set( data->get() ); 00313 return *this; 00314 }