4956d2797f0a634d2b27386aed846451eb0e38e4
[clinton/Smoothieware.git] / src / modules / tools / toolsmanager / Tool.h
1 /*
2 this file is part of smoothie (http://smoothieware.org/). the motion control part is heavily based on grbl (https://github.com/simen/grbl).
3 smoothie is free software: you can redistribute it and/or modify it under the terms of the gnu general public license as published by the free software foundation, either version 3 of the license, or (at your option) any later version.
4 smoothie is distributed in the hope that it will be useful, but without any warranty; without even the implied warranty of merchantability or fitness for a particular purpose. see the gnu general public license for more details.
5 you should have received a copy of the gnu general public license along with smoothie. if not, see <http://www.gnu.org/licenses/>.
6 */
7
8 #ifndef TOOL_H
9 #define TOOL_H
10
11 class Tool {
12 public:
13 Tool(){};
14
15 virtual void enable();
16 virtual void disable();
17 virtual float* get_offset();
18 };
19
20
21 #endif