ITestTool.h
Go to the documentation of this file.
1 // ITestTool.h
2 
3 // David Adams
4 // April 2018
5 //
6 // Example tool interface for testing.
7 
8 #ifndef ITestTool_H
9 #define ITestTool_H
10 
11 #include <string>
12 
13 class ITestTool {
14 
15 public:
16 
17  virtual ~ITestTool() =default;
18 
19  virtual std::string mytype() const { return "ITestTool"; }
20 
21  virtual std::string label() =0;
22 
23 private:
24 
25 };
26 
27 #endif
std::string string
Definition: nybbler.cc:12
virtual ~ITestTool()=default
virtual std::string label()=0
virtual std::string mytype() const
Definition: ITestTool.h:19