Files
geant4/source/visualization/management/include/G4VisCommandsCameraMessengers.hh
T
2016-06-08 15:34:16 +02:00

33 lines
913 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: G4VisCommandsCameraMessengers.hh,v 1.3 1999/12/15 14:54:21 gunter Exp $
// GEANT4 tag $Name: geant4-01-01 $
//
//
// Messengers for /vis~/camera commands - John Allison 6th April 1998.
#ifndef G4VISCOMMANDSCAMERAMESSENGERS_HH
#define G4VISCOMMANDSCAMERAMESSENGERS_HH
#include "globals.hh"
#include "G4UImessenger.hh"
class G4UIcommand;
class G4VisCommandsCameraSetMessenger: public G4UImessenger {
public:
G4VisCommandsCameraSetMessenger ();
~G4VisCommandsCameraSetMessenger ();
G4String GetCurrentValue(G4UIcommand * command);
void SetNewValue (G4UIcommand* command, G4String newValues);
private:
G4UIcommand* fpCommand;
};
#endif