19 lines
649 B
Plaintext
19 lines
649 B
Plaintext
// 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: G4VVisCommand.icc,v 1.2 1999/01/09 16:30:51 allison Exp $
|
|
// GEANT4 tag $Name: geant4-00-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;
|
|
}
|