1 #ifndef TOOLCLASSES_H 2 #define TOOLCLASSES_H 3 4 #include <vector> 5 #include <memory> 6 7 #include "SimTool.h" 8 9 #define TOOL_NUMBERS_ENUMERATE 10 #include "ToolNumbers.h" 11 #undef TOOL_NUMBERS_ENUMERATE 12 13 std::vector<SimTool> const &GetTools(); 14 15 #endif 16