12 lines
112 B
C
12 lines
112 B
C
![]() |
#ifndef TOOL_H_
|
||
|
#define TOOL_H_
|
||
|
|
||
|
class Tool
|
||
|
{
|
||
|
public:
|
||
|
Tool();
|
||
|
virtual ~Tool();
|
||
|
};
|
||
|
|
||
|
#endif /*TOOL_H_*/
|