Import Geant4 11.2.0.beta source tree

This commit is contained in:
Gabriele Cosmo
2023-06-30 09:09:57 +02:00
parent aef78ca386
commit dd1f179cda
3780 changed files with 212808 additions and 142780 deletions
+8 -7
View File
@@ -25,7 +25,7 @@
//
//
//
//
//
// John Allison 5th April 2001
// A template for a simplest possible graphics driver.
//?? Lines beginning like this require specialisation for your driver.
@@ -35,12 +35,13 @@
#include "G4VGraphicsSystem.hh"
class G4Vtk: public G4VGraphicsSystem {
public:
G4Vtk();
virtual ~G4Vtk();
G4VSceneHandler* CreateSceneHandler(const G4String& name = "");
G4VViewer* CreateViewer (G4VSceneHandler&, const G4String& name = "");
class G4Vtk : public G4VGraphicsSystem
{
public:
G4Vtk();
~G4Vtk() override = default;
G4VSceneHandler* CreateSceneHandler(const G4String& name = "") override;
G4VViewer* CreateViewer(G4VSceneHandler&, const G4String& name = "") override;
};
#endif