35 lines
846 B
C++
35 lines
846 B
C++
// This code implementation is the intellectual property of
|
|
// the RD44 GEANT4 collaboration.
|
|
//
|
|
// By copying, distributing or modifying the Program (or any work
|
|
// based on the Program) you indicate your acceptance of this statement,
|
|
// and all its terms.
|
|
//
|
|
// $Id: G4VRML1File.hh,v 2.3 1998/11/09 19:32:48 allison Exp $
|
|
// GEANT4 tag $Name: geant4-00 $
|
|
//
|
|
// G4VRML1File.hh
|
|
// Satoshi Tanaka & Yasuhide Sawada
|
|
|
|
#if defined (G4VIS_BUILD_VRMLFILE_DRIVER) || (G4VIS_USE_VRMLFILE)
|
|
|
|
#ifndef G4VRML1FILE_HH
|
|
#define G4VRML1FILE_HH
|
|
|
|
#include "G4VGraphicsSystem.hh"
|
|
|
|
class G4VScene;
|
|
|
|
class G4VRML1File: public G4VGraphicsSystem {
|
|
public:
|
|
G4VRML1File();
|
|
~G4VRML1File();
|
|
G4VScene* CreateScene(const G4String& name = "");
|
|
G4VView* CreateView(G4VScene&, const G4String& name = "");
|
|
|
|
};
|
|
|
|
#endif //G4VRML1File_HH
|
|
#endif //G4VIS_BUILD_VRMLFILE_DRIVER
|
|
|