41 lines
982 B
C++
41 lines
982 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: G4VRML1FileView.hh,v 2.3 1998/11/09 19:32:52 allison Exp $
|
|
// GEANT4 tag $Name: geant4-00 $
|
|
//
|
|
// G4VRML1FileView.hh
|
|
// Satoshi Tanaka and Yasuhide Sawada
|
|
|
|
#ifdef G4VIS_BUILD_VRMLFILE_DRIVER
|
|
|
|
#ifndef G4VRML1FILE_VIEW_HH
|
|
#define G4VRML1FILE_VIEW_HH
|
|
|
|
#include "G4VView.hh"
|
|
#include "globals.hh"
|
|
|
|
class G4VRML1FileScene;
|
|
|
|
class G4VRML1FileView: public G4VView {
|
|
public:
|
|
G4VRML1FileView(G4VRML1FileScene& scene, const G4String& name = "");
|
|
~G4VRML1FileView();
|
|
void ClearView();
|
|
void DrawView();
|
|
void ShowView();
|
|
void FinishView();
|
|
private:
|
|
void SetView();
|
|
|
|
private:
|
|
G4VRML1FileScene& fScene; // Reference to Graphics Scene for this view.
|
|
};
|
|
|
|
#endif //G4VRML1File_VIEW_HH
|
|
#endif //G4VIS_BUILD_VRMLFILE_DRIVER
|