#ifndef HELLO_SVC_H #define HELLO_SVC_H 1 #include "SniperKernel/SvcBase.h" #include "string" class HelloSvc: public SvcBase { public: HelloSvc(const std::string& name); ~HelloSvc(); bool initialize(); bool finalize(); void doSomething(); }; #endif