XMLHepRepFactory.cc

Go to the documentation of this file.
00001 // Copyright FreeHEP, 2005.
00002 
00003 #include <iostream>
00004 #include <fstream>
00005 
00006 #include "cheprep/XMLHepRepWriter.h"
00007 #include "cheprep/XMLHepRepFactory.h"
00008 
00009 using namespace std;
00010 using namespace HEPREP;
00011 
00016 namespace cheprep {
00017 
00018 
00019 XMLHepRepFactory::XMLHepRepFactory() {
00020 }
00021 
00022 XMLHepRepFactory::~XMLHepRepFactory() {
00023 }
00024 
00025 HepRepReader* XMLHepRepFactory::createHepRepReader (istream*) {
00026     cerr << "XMLHepRepFactory::createHepRepReader not implemented" << endl;
00027     return NULL;
00028 }
00029 
00030 HepRepReader* XMLHepRepFactory::createHepRepReader (std::string) {
00031     cerr << "XMLHepRepFactory::createHepRepReader not implemented" << endl;
00032     return NULL;
00033 }
00034 
00035 HepRepWriter* XMLHepRepFactory::createHepRepWriter(ostream* out, bool randomAccess, bool compress) {
00036     return new XMLHepRepWriter(out, randomAccess, compress);
00037 }
00038 
00039 } // cheprep
00040 

Generated on Mon May 27 17:50:36 2013 for Geant4 by  doxygen 1.4.7