TDbiRegistryItemXxx.cxx File Reference

#include <TBuffer.h>
#include <TObject.h>
#include "TDbiRegistryItem.hxx"
#include "TDbiRegistryItemXxx.hxx"
#include <UtilStream.hxx>
#include <string>
Include dependency graph for TDbiRegistryItemXxx.cxx:

Go to the source code of this file.

Functions

TBuffer & operator>> (TBuffer &buf, int *&xptr)
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)

Function Documentation

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

Definition at line 99 of file TDbiRegistryItemXxx.cxx.

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

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

Definition at line 94 of file TDbiRegistryItemXxx.cxx.

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

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

Definition at line 89 of file TDbiRegistryItemXxx.cxx.

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

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

Definition at line 68 of file TDbiRegistryItemXxx.cxx.

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 TDbiRegistryItemXxx.cxx.

00062 {
00063     double x;
00064     buf >> x;
00065     xptr = new double(x);
00066     return buf;
00067 }

TBuffer& operator>> ( TBuffer &  buf,
int *&  xptr 
)

Definition at line 54 of file TDbiRegistryItemXxx.cxx.

00055 {
00056     int x;
00057     buf >> x;
00058     xptr = new int(x);
00059     return buf;
00060 }


Generated on 11 Aug 2013 for SKDatabase by  doxygen 1.6.1