#include <G4VInteractiveSession.hh>
Public Member Functions | |
G4VInteractiveSession () | |
virtual | ~G4VInteractiveSession () |
virtual void | AddMenu (const char *, const char *) |
virtual void | AddButton (const char *, const char *, const char *) |
virtual void | AddIcon (const char *, const char *, const char *, const char *) |
void | AddInteractor (G4String, G4Interactor) |
G4Interactor | GetInteractor (G4String) |
Definition at line 44 of file G4VInteractiveSession.hh.
G4VInteractiveSession::G4VInteractiveSession | ( | ) |
Definition at line 33 of file G4VInteractiveSession.cc.
00034 { 00035 messenger = new G4InteractorMessenger(this); 00036 }
G4VInteractiveSession::~G4VInteractiveSession | ( | ) | [virtual] |
void G4VInteractiveSession::AddButton | ( | const char * | , | |
const char * | , | |||
const char * | ||||
) | [virtual] |
Definition at line 50 of file G4VInteractiveSession.cc.
Referenced by G4InteractorMessenger::SetNewValue().
void G4VInteractiveSession::AddIcon | ( | const char * | , | |
const char * | , | |||
const char * | , | |||
const char * | ||||
) | [virtual] |
Definition at line 55 of file G4VInteractiveSession.cc.
Referenced by G4InteractorMessenger::SetNewValue().
void G4VInteractiveSession::AddInteractor | ( | G4String | , | |
G4Interactor | ||||
) |
void G4VInteractiveSession::AddMenu | ( | const char * | , | |
const char * | ||||
) | [virtual] |
Definition at line 45 of file G4VInteractiveSession.cc.
Referenced by G4InteractorMessenger::SetNewValue().
G4Interactor G4VInteractiveSession::GetInteractor | ( | G4String | ) |
Definition at line 67 of file G4VInteractiveSession.cc.
00068 { 00069 G4interactor_map::iterator it; 00070 if((it=interactors.find(a_name))==interactors.end()) return NULL; 00071 return (*it).second; 00072 }