Main Page | Modules | Namespace List | Class Hierarchy | Alphabetical List | Class List | Directories | File List | Namespace Members | Class Members | File Members | Related Pages

RegistryItemXxx.h File Reference

#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


Function Documentation

ClassDefT2 RegistryItemXxx  ,
 

ClassImpT RegistryItemXxx  ,
 

Definition at line 83 of file RegistryItemXxx.h.

00086                                         : fData(0) 
00087 { 
00088 }

TBuffer& operator<< TBuffer &  buf,
float *&  xptr
 

Definition at line 99 of file RegistryItemXxx.cxx.

00100 {
00101     buf << *xptr;
00102     return buf;
00103 }

TBuffer& operator<< TBuffer &  buf,
double *&  xptr
 

Definition at line 94 of file RegistryItemXxx.cxx.

00095 {
00096     buf << *xptr;
00097     return buf;
00098 }

TBuffer& operator<< TBuffer &  buf,
int *&  xptr
 

Definition at line 89 of file RegistryItemXxx.cxx.

00090 {
00091     buf << *xptr;
00092     return buf;
00093 }

TBuffer& operator>> TBuffer &  buf,
float *&  xptr
 

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 }

TBuffer& operator>> TBuffer &  buf,
double *&  xptr
 

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 }


Variable Documentation

int*& xptr
 

Definition at line 67 of file RegistryItemXxx.h.

Referenced by operator>>().


Generated on Mon Feb 15 11:08:10 2010 for loon by  doxygen 1.3.9.1