#ifndef HELLO_TOOL_H #define HELLO_TOOL_H 1 #include "SniperKernel/ToolBase.h" #include class HelloTool: public ToolBase { public: HelloTool(const std::string& name); ~HelloTool(); void doSomething(); }; #endif