#include <PsnArray.h>
Inheritance diagram for PsnAbstractArray< T >:

Public Methods | |
| PsnAbstractArray (size_t taille) | |
| virtual | ~PsnAbstractArray () |
| virtual T & | operator[] (int i)=0 |
| virtual const T & | operator[] (int i) const=0 |
| virtual void | printDebuggingInformation (unsigned int numberToShow) |
Definition at line 26 of file PsnArray.h.
|
||||||||||
|
Definition at line 28 of file PsnArray.h.
00028 {};
|
|
|||||||||
|
Definition at line 29 of file PsnArray.h.
00029 {} ;
|
|
||||||||||
|
Implemented in PsnArray< T >, and PsnMomeArray< T >. |
|
||||||||||
|
Implemented in PsnArray< T >, and PsnMomeArray< T >. |
|
||||||||||
|
Definition at line 36 of file PsnArray.h.
00036 {
00037 unsigned int i;
00038 cerr <<" PsnAbstractArray<"<<typeid(T).name()<<">::printDebuggingInformation ("<<numberToShow<<")"<<endl<<"\t";
00039 for (i = 0 ; i < numberToShow ; i++) {
00040 cerr << &( (*this) [i]) << " \t" ;
00041 }
00042 cerr << endl << "\t" ;
00043 for (i = 0 ; i < numberToShow ; i++) {
00044 cerr << (*this)[i].valeur << " "<< (*this)[i].dateValeur<< " \t" ;
00045 }
00046 cerr << endl;
00047 }
|
| Documentation generated on Mon Nov 25 15:25:51 2002 |
Generated with doxygen 1.2.12 by Dimitri van Heesch , 1997-2001 |