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

33 lines
919 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: G4VisCommandsCameraMessengers.hh,v 1.2 1999/01/09 16:30:55 allison Exp $
// GEANT4 tag $Name: geant4-00-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