1#ifndef __JLANG__JOBJECTSTREAMIO__ 
    2#define __JLANG__JOBJECTSTREAMIO__ 
   14namespace JPP { 
using namespace JLANG; }
 
   30    void load(
const char* file_name)
 
 
   41    void store(
const char* file_name)
 const 
 
 
General methods for loading and storing a single object from and to a file, respectively.
 
Auxiliary classes and methods for language specific functionality.
 
void store(const std::string &file_name, const T &object)
Store object to output file.
 
void load(const std::string &file_name, T &object)
Load object from input file.
 
This name space includes all other name spaces (except KM3NETDAQ, KM3NET and ANTARES).
 
Auxiliary base class for storing and loading a single object to and from an ASCII file,...
 
void store(const char *file_name) const
Store to output file.
 
void load(const char *file_name)
Load from input file.