#include <TBuffer.h>#include <TObject.h>#include <Registry/RegistryItem.h>#include <typeinfo>#include <iostream>#include <Registry/Registry.h>Go to the source code of this file.
Classes | |
| class | RegistryItemXxx< T > |
Functions | |
| ClassDefT2 (RegistryItemXxx, T) TBuffer &operator>>(TBuffer &buf | |
| TBuffer & | operator>> (TBuffer &buf, double *&xptr) |
| TBuffer & | operator>> (TBuffer &buf, float *&xptr) |
| TBuffer & | operator<< (TBuffer &buf, int *&xptr) |
| TBuffer & | operator<< (TBuffer &buf, double *&xptr) |
| TBuffer & | operator<< (TBuffer &buf, float *&xptr) |
| ClassImpT (RegistryItemXxx, T) template< class T > RegistryItemXxx< T > | |
Variables | |
| int *& | xptr |
|
||||||||||||
|
|
|
||||||||||||
|
Definition at line 83 of file RegistryItemXxx.h. 00086 : fData(0)
00087 {
00088 }
|
|
||||||||||||
|
Definition at line 99 of file RegistryItemXxx.cxx. 00100 {
00101 buf << *xptr;
00102 return buf;
00103 }
|
|
||||||||||||
|
Definition at line 94 of file RegistryItemXxx.cxx. 00095 {
00096 buf << *xptr;
00097 return buf;
00098 }
|
|
||||||||||||
|
Definition at line 89 of file RegistryItemXxx.cxx. 00090 {
00091 buf << *xptr;
00092 return buf;
00093 }
|
|
||||||||||||
|
Definition at line 68 of file RegistryItemXxx.cxx. References xptr. 00069 {
00070 float x;
00071 buf >> x;
00072 xptr = new float(x);
00073 return buf;
00074 }
|
|
||||||||||||
|
Definition at line 61 of file RegistryItemXxx.cxx. References xptr. 00062 {
00063 double x;
00064 buf >> x;
00065 xptr = new double(x);
00066 return buf;
00067 }
|
|
|
Definition at line 67 of file RegistryItemXxx.h. Referenced by operator>>(). |
1.3.9.1