Main Page
Related Pages
Modules
Namespaces
Classes
Files
Examples
File List
File Members
dunecore
dunecore
ArtSupport
Tool
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
string
std::string string
Definition:
nybbler.cc:12
ITestTool::~ITestTool
virtual ~ITestTool()=default
ITestTool::label
virtual std::string label()=0
ITestTool::mytype
virtual std::string mytype() const
Definition:
ITestTool.h:19
ITestTool
Definition:
ITestTool.h:13
Generated by
1.8.11