ATLAS Offline Software
SoTools.h
Go to the documentation of this file.
1 /*
2  Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
3 */
4 
5 /*
6  * SoTools.h
7  *
8  * Utility functions for Open Inventor nodes and objects
9  *
10  *
11  * Created on: Sep 3, 2014
12  * Author: Riccardo Maria BIANCHI - rbianchi@cern.ch
13  */
14 
15 #ifndef SOTOOLS_H_
16 #define SOTOOLS_H_
17 
18 // FWD declarations
19 class SoNode;
20 
21 
22 class SoTools {
23 public:
24  SoTools() {};
25  virtual ~SoTools() {};
26 
27  static void dumpNode(SoNode*);
28 };
29 
30 #endif /* SOTOOLS_H_ */
SoTools
Definition: SoTools.h:22
SoTools::~SoTools
virtual ~SoTools()
Definition: SoTools.h:25
SoTools::dumpNode
static void dumpNode(SoNode *)
SoTools::SoTools
SoTools()
Definition: SoTools.h:24