19 lines
643 B
Plaintext
19 lines
643 B
Plaintext
// 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: G4VVisCommand.icc,v 1.3 1999/12/15 14:54:20 gunter Exp $
|
|
// GEANT4 tag $Name: geant4-01-01 $
|
|
|
|
// Base class for visualization commands - John Allison 9th August 1998
|
|
// It is really a messenger - we have one command per messenger.
|
|
|
|
inline G4VVisCommand::G4VVisCommand () {}
|
|
|
|
inline void G4VVisCommand::SetVisManager (G4VisManager* pVisManager) {
|
|
fpVisManager = pVisManager;
|
|
}
|