Go to the documentation of this file.    1 #ifndef __JIO__JSERIALISABLE__ 
    2 #define __JIO__JSERIALISABLE__ 
   16 namespace JPP { 
using namespace JIO; }
 
   82       return object.
read(*
this); 
 
   95     JReader& 
operator>>(
unsigned long long int& value) { 
read((
char*) &value, 
sizeof(
unsigned long long int)); 
return *
this; }
 
  109       return object.
read(*
this);
 
  122       return *
this >> object;
 
  143       return object.
write(*
this); 
 
  156     JWriter& 
operator<<(
const unsigned long long int& value) { 
write((
const char*) &value, 
sizeof(
unsigned long long int)); 
return *
this; }
 
  170       return object.
write(*
this);
 
  183       return *
this << object;
 
 
virtual void clear()
Clear status of reader.
 
JReader & operator>>(unsigned char &value)
 
Interface for binary input.
 
JWriter & operator<<(const float &value)
 
Interface for binary output.
 
JWriter & store(const T &object)
Write object.
 
JReader & operator>>(double &value)
 
Forward declaration of binary output.
 
virtual ~JSerialisable()
Virtual destructor.
 
JReader & operator>>(unsigned int &value)
 
virtual JReader & read(JReader &in)=0
Read from input.
 
Interface for status of object.
 
JWriter & operator<<(const long long int &value)
 
JWriter & operator<<(const unsigned long long int &value)
 
JWriter & store(const JSerialisable &object)
Write object.
 
JReader & load(JSerialisable &object)
Read object.
 
JWriter & operator<<(const bool &value)
 
This name space includes all other name spaces (except KM3NETDAQ, KM3NET and ANTARES).
 
JReader & operator>>(long int &value)
 
JReader & operator>>(unsigned long long int &value)
 
JReader & operator>>(long long int &value)
 
JWriter & operator<<(const unsigned char &value)
 
virtual int write(const char *buffer, const int length)=0
Write byte array.
 
JWriter & operator<<(const double &value)
 
JWriter & operator<<(const long double &value)
 
Interface for binary output.
 
JReader & operator>>(long double &value)
 
JReader & operator>>(unsigned short &value)
 
JWriter & operator<<(const char &value)
 
JReader & operator>>(int &value)
 
JWriter & operator<<(const long int &value)
 
virtual JWriter & write(JWriter &out) const =0
Write to output.
 
JWriter & operator<<(const JSerialisable &object)
Write serialisable data object.
 
JReader & load(T &object)
Read object.
 
JReader & operator>>(JSerialisable &object)
Read serialisable data object.
 
JWriter & operator<<(const short &value)
 
Auxiliary classes and methods for binary I/O.
 
JWriter & operator<<(const int &value)
 
JReader & operator>>(bool &value)
 
JReader & operator>>(short &value)
 
JWriter & operator<<(const unsigned short &value)
 
JWriter & operator<<(const unsigned int &value)
 
JReader & operator>>(float &value)
 
JReader & operator>>(char &value)