31 lines
808 B
C++
31 lines
808 B
C++
// This code implementation is the intellectual property of
|
|
// the 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: G4OpenGLImmediateWin32.hh,v 1.4 1999/12/15 14:54:03 gunter Exp $
|
|
// GEANT4 tag $Name: geant4-03-01 $
|
|
//
|
|
//
|
|
// OpenGLImmediateWin32 graphics system factory.
|
|
|
|
#if defined (G4VIS_BUILD_OPENGLWIN32_DRIVER) || defined (G4VIS_USE_OPENGLWIN32)
|
|
|
|
#ifndef G4OPENGLIMMEDIATEWIN32_HH
|
|
#define G4OPENGLIMMEDIATEWIN32_HH
|
|
|
|
#include "G4VGraphicsSystem.hh"
|
|
|
|
class G4OpenGLImmediateWin32: public G4VGraphicsSystem {
|
|
public:
|
|
G4OpenGLImmediateWin32 ();
|
|
G4VSceneHandler* CreateSceneHandler ();
|
|
G4VViewer* CreateViewer (G4VSceneHandler&);
|
|
};
|
|
|
|
#endif
|
|
|
|
#endif
|