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


Definition at line 340 of file NTuple.h.
Public Member Functions | |
| Matrix () | |
| Standard Constructor. | |
| template<class T> | |
| Matrix & | operator= (const Matrix< T > ©) |
| Assignment operator. | |
| template<class T> | |
| TYP * | operator[] (const T i) |
| Array operator. | |
| template<class T> | |
| const TYP * | operator[] (const T i) const |
| Array operator. | |
| virtual | ~Matrix () |
| NTuple::Matrix< TYP >::Matrix | ( | ) | [inline] |
| virtual NTuple::Matrix< TYP >::~Matrix | ( | ) | [inline, virtual] |
| Matrix& NTuple::Matrix< TYP >::operator= | ( | const Matrix< T > & | copy | ) | [inline] |
Assignment operator.
Definition at line 346 of file NTuple.h.
References NTuple::_Accessor< TYP >::m_ptr.
Array operator.
Definition at line 352 of file NTuple.h.
References NTuple::_Accessor< TYP >::m_ptr.
00352 { return this->m_ptr->column(i); }
| const TYP* NTuple::Matrix< TYP >::operator[] | ( | const T | i | ) | const [inline] |
Array operator.
Definition at line 355 of file NTuple.h.
References NTuple::_Accessor< TYP >::m_ptr.
00355 { return this->m_ptr->column(i); }