Merge remote-tracking branch 'upstream/edge' into feature/add-est-to-progress
[clinton/Smoothieware.git] / src / modules / communication / GcodeDispatch.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 GCODE_DISPATCH_H
9 #define GCODE_DISPATCH_H
10
11 #include <string>
12 using std::string;
13 #include "libs/Module.h"
14 #include "libs/Kernel.h"
15 #include "utils/Gcode.h"
16
17 #include "libs/StreamOutput.h"
18
19 class GcodeDispatch : public Module {
20 public:
21 GcodeDispatch();
22
23 virtual void on_module_loaded();
24 virtual void on_console_line_received(void* line);
25 private:
26 int currentline;
27 };
28
29 #endif