ECCE @ EIC Software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
XMLHepRepFactory.cc
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file XMLHepRepFactory.cc
1 // Copyright FreeHEP, 2005.
2 
3 #include <iostream>
4 #include <fstream>
5 
8 
9 using namespace std;
10 using namespace HEPREP;
11 
15 namespace cheprep {
16 
17 
18 XMLHepRepFactory::XMLHepRepFactory() {
19 }
20 
21 XMLHepRepFactory::~XMLHepRepFactory() {
22 }
23 
24 HepRepReader* XMLHepRepFactory::createHepRepReader (istream*) {
25  cerr << "XMLHepRepFactory::createHepRepReader not implemented" << endl;
26  return NULL;
27 }
28 
29 HepRepReader* XMLHepRepFactory::createHepRepReader (std::string) {
30  cerr << "XMLHepRepFactory::createHepRepReader not implemented" << endl;
31  return NULL;
32 }
33 
34 HepRepWriter* XMLHepRepFactory::createHepRepWriter(ostream* out, bool randomAccess, bool compress) {
35  return new XMLHepRepWriter(out, randomAccess, compress);
36 }
37 
38 } // cheprep
39