diff options
author | psychocrypt <psychocrypt@users.noreply.github.com> | 2017-09-29 21:43:43 +0200 |
---|---|---|
committer | psychocrypt <psychocrypt@users.noreply.github.com> | 2017-09-30 23:46:08 +0200 |
commit | 8babae3156430f5aa6b804f7c352ffb178097963 (patch) | |
tree | 6c09c50e518c1d6342c06b3890f71043fc0e90b5 /xmrstak/misc/executor.cpp | |
parent | 4526840bb6347eaed7d80a807357f969f9c68a40 (diff) | |
download | xmr-stak-8babae3156430f5aa6b804f7c352ffb178097963.zip xmr-stak-8babae3156430f5aa6b804f7c352ffb178097963.tar.gz |
cleanup includes
Diffstat (limited to 'xmrstak/misc/executor.cpp')
-rw-r--r-- | xmrstak/misc/executor.cpp | 25 |
1 files changed, 13 insertions, 12 deletions
diff --git a/xmrstak/misc/executor.cpp b/xmrstak/misc/executor.cpp index 64f3d40..455412e 100644 --- a/xmrstak/misc/executor.cpp +++ b/xmrstak/misc/executor.cpp @@ -21,24 +21,25 @@ * */ +#include "executor.hpp" +#include "xmrstak/net/jpsock.hpp" + +#include "telemetry.hpp" +#include "xmrstak/backend/miner_work.hpp" +#include "xmrstak/backend/globalStates.hpp" +#include "xmrstak/backend/backendConnector.hpp" + +#include "xmrstak/jconf.hpp" +#include "xmrstak/misc/console.hpp" +#include "xmrstak/donate-level.hpp" +#include "xmrstak/http/webdesign.hpp" + #include <thread> #include <string> #include <cmath> #include <algorithm> #include <assert.h> #include <time.h> -#include "executor.h" -#include "jpsock.h" - -#include "telemetry.h" -#include "backend/miner_work.h" -#include "backend/GlobalStates.hpp" -#include "backend/BackendConnector.hpp" - -#include "jconf.h" -#include "console.h" -#include "donate-level.h" -#include "webdesign.h" #ifdef _WIN32 #define strncasecmp _strnicmp |