Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Duet3D/RepRapFirmware.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Crocker <dcrocker@eschertech.com>2016-12-25 20:35:33 +0300
committerDavid Crocker <dcrocker@eschertech.com>2016-12-25 20:35:47 +0300
commitad8aa69794b76a081d9c504d5f817b87df39e893 (patch)
tree54c738271cf149a09bfea5f184f27d4755da0b6f /src/Tool.cpp
parent81035c9322f35f91831011553eee4bb09edfc737 (diff)
Reduced header file coupling
Restructured the header file inclusion so that the .cpp files are dependent on fewer header files, resulting in less recompilation when most header files are changed
Diffstat (limited to 'src/Tool.cpp')
-rw-r--r--src/Tool.cpp7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/Tool.cpp b/src/Tool.cpp
index e5e4bcbe..e98beaa8 100644
--- a/src/Tool.cpp
+++ b/src/Tool.cpp
@@ -23,7 +23,12 @@
****************************************************************************************************/
-#include "RepRapFirmware.h"
+#include "Tool.h"
+
+#include "GCodes/GCodes.h"
+#include "Heating/Heat.h"
+#include "Platform.h"
+#include "RepRap.h"
Tool * Tool::freelist = nullptr;