Geant4  v4-10.4-release
 모두 클래스 네임스페이스들 파일들 함수 변수 타입정의 열거형 타입 열거형 멤버 Friends 매크로 그룹들 페이지들
XMLHepRepFactory.cc
이 파일의 문서화 페이지로 가기
1 // Copyright FreeHEP, 2005.
2 
3 #include <iostream>
4 #include <fstream>
5 
8 
9 using namespace std;
10 using namespace HEPREP;
11 
16 namespace cheprep {
17 
18 
19 XMLHepRepFactory::XMLHepRepFactory() {
20 }
21 
22 XMLHepRepFactory::~XMLHepRepFactory() {
23 }
24 
25 HepRepReader* XMLHepRepFactory::createHepRepReader (istream*) {
26  cerr << "XMLHepRepFactory::createHepRepReader not implemented" << endl;
27  return NULL;
28 }
29 
30 HepRepReader* XMLHepRepFactory::createHepRepReader (std::string) {
31  cerr << "XMLHepRepFactory::createHepRepReader not implemented" << endl;
32  return NULL;
33 }
34 
35 HepRepWriter* XMLHepRepFactory::createHepRepWriter(ostream* out, bool randomAccess, bool compress) {
36  return new XMLHepRepWriter(out, randomAccess, compress);
37 }
38 
39 } // cheprep
40