source: trunk/source/visualization/HepRep/src/XMLHepRepFactory.cc @ 1098

Last change on this file since 1098 was 834, checked in by garnier, 16 years ago

import all except CVS

File size: 950 bytes
Line 
1// Copyright FreeHEP, 2005.
2
3#include <iostream>
4#include <fstream>
5
6#include "cheprep/XMLHepRepWriter.h"
7#include "cheprep/XMLHepRepFactory.h"
8
9using namespace std;
10using namespace HEPREP;
11
12/**
13 * @author Mark Donszelmann
14 * @version $Id: XMLHepRepFactory.cc,v 1.5 2005/06/02 21:28:45 duns Exp $
15 */
16namespace cheprep {
17
18
19XMLHepRepFactory::XMLHepRepFactory() {
20}
21
22XMLHepRepFactory::~XMLHepRepFactory() {
23}
24
25HepRepReader* XMLHepRepFactory::createHepRepReader (istream*) {
26    cerr << "XMLHepRepFactory::createHepRepReader not implemented" << endl;
27    return NULL;
28}
29
30HepRepReader* XMLHepRepFactory::createHepRepReader (std::string) {
31    cerr << "XMLHepRepFactory::createHepRepReader not implemented" << endl;
32    return NULL;
33}
34
35HepRepWriter* XMLHepRepFactory::createHepRepWriter(ostream* out, bool randomAccess, bool compress) {
36    return new XMLHepRepWriter(out, randomAccess, compress);
37}
38
39} // cheprep
40
Note: See TracBrowser for help on using the repository browser.