Files
geant4/source/intercoms/include/G4UnitsMessenger.hh
T
2016-06-01 15:25:35 +02:00

42 lines
1.0 KiB
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: G4UnitsMessenger.hh,v 2.1 1998/11/27 06:12:47 asaim Exp $
// GEANT4 tag $Name: geant4-00 $
//
//
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
#ifndef G4UnitsMessenger_h
#define G4UnitsMessenger_h 1
#include "globals.hh"
#include "G4UImessenger.hh"
class G4UIdirectory;
class G4UIcmdWithoutParameter;
//....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
class G4UnitsMessenger: public G4UImessenger
{
public:
G4UnitsMessenger();
~G4UnitsMessenger();
void SetNewValue(G4UIcommand*, G4String);
private:
G4UIdirectory* UnitsTableDir;
G4UIcmdWithoutParameter* ListCmd;
};
#endif