OpenLexocad  27.1
CompoundTool.h
Go to the documentation of this file.
1 #pragma once
2 
3 #include <Topo/Shape.h>
4 
5 namespace Topo
6 {
12 class LX_TOPO_EXPORT CompoundTool
13 {
14 public:
15  CompoundTool(void);
16  virtual ~CompoundTool(void);
17 
18 
19  static void __setDefaultTool__(Topo::CompoundTool* tool) { _defaultTool = tool; }
20 
21 private:
22  static Topo::CompoundTool* _defaultTool;
23 };
24 
25 } // namespace Topo
Tools for creating, manipulating and querying Compounds.
Definition: CompoundTool.h:12
static void __setDefaultTool__(Topo::CompoundTool *tool)
Definition: CompoundTool.h:19
Definition: Variant.h:55