00001
00002
00003 #ifndef IAsgHelloTool_H
00004 #define IAsgHelloTool_H
00005
00006 #include "AsgTools/IAsgTool.h"
00007
00008 class IAsgHelloTool : virtual public asg::IAsgTool {
00009 ASG_TOOL_INTERFACE(IAsgHelloTool)
00010
00011 public:
00012
00013
00014 virtual int talk() const =0;
00015
00016 };
00017
00018 #endif