| [1274] | 1 | //
|
|---|
| 2 | // ********************************************************************
|
|---|
| 3 | // * DISCLAIMER *
|
|---|
| 4 | // * *
|
|---|
| 5 | // * The following disclaimer summarizes all the specific disclaimers *
|
|---|
| 6 | // * of contributors to this software. The specific disclaimers,which *
|
|---|
| 7 | // * govern, are listed with their locations in: *
|
|---|
| 8 | // * http://cern.ch/geant4/license *
|
|---|
| 9 | // * *
|
|---|
| 10 | // * Neither the authors of this software system, nor their employing *
|
|---|
| 11 | // * institutes,nor the agencies providing financial support for this *
|
|---|
| 12 | // * work make any representation or warranty, express or implied, *
|
|---|
| 13 | // * regarding this software system or assume any liability for its *
|
|---|
| 14 | // * use. *
|
|---|
| 15 | // * *
|
|---|
| 16 | // * This code implementation is the intellectual property of the *
|
|---|
| 17 | // * GEANT4 collaboration. *
|
|---|
| 18 | // * By copying, distributing or modifying the Program (or any work *
|
|---|
| 19 | // * based on the Program) you indicate your acceptance of this *
|
|---|
| 20 | // * statement, and all its terms. *
|
|---|
| 21 | // ********************************************************************
|
|---|
| 22 | //
|
|---|
| 23 | //
|
|---|
| 24 | // $Id: G4UIxvtMessenger.hh,v 1.4 2001/07/11 10:01:19 gunter Exp $
|
|---|
| 25 | // GEANT4 tag $Name: $
|
|---|
| 26 | //
|
|---|
| 27 | //////////////////////////////////////////////////////////////////////////////
|
|---|
| 28 | // //
|
|---|
| 29 | // The original code (written by Makoto Asai) has been adapted for use //
|
|---|
| 30 | // with the XVT Geant GUI //
|
|---|
| 31 | // //
|
|---|
| 32 | // By: Simon Prior 11/08/97 //
|
|---|
| 33 | // //
|
|---|
| 34 | //////////////////////////////////////////////////////////////////////////////
|
|---|
| 35 | #ifndef G4UIxvtMessenger_h
|
|---|
| 36 | #define G4UIxvtMessenger_h 1
|
|---|
| 37 |
|
|---|
| 38 | #if defined(G4UI_BUILD_XVT_SESSION) || defined(G4UI_USE_XVT)
|
|---|
| 39 |
|
|---|
| 40 | #include "G4UImessenger.hh"
|
|---|
| 41 | #include "G4UImanager.hh"
|
|---|
| 42 |
|
|---|
| 43 | class G4UIxvt;
|
|---|
| 44 |
|
|---|
| 45 | class G4UIxvtMessenger : public G4UImessenger
|
|---|
| 46 | {
|
|---|
| 47 | public:
|
|---|
| 48 | G4UIxvtMessenger(G4UIxvt*);
|
|---|
| 49 | void SetNewValue(G4UIcommand * command,G4String newValue);
|
|---|
| 50 | private:
|
|---|
| 51 | G4UIxvt* xvtptr;
|
|---|
| 52 | };
|
|---|
| 53 |
|
|---|
| 54 | #endif
|
|---|
| 55 |
|
|---|
| 56 | #endif
|
|---|
| 57 |
|
|---|