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/backend/plugin.hpp | |
parent | 4526840bb6347eaed7d80a807357f969f9c68a40 (diff) | |
download | xmr-stak-8babae3156430f5aa6b804f7c352ffb178097963.zip xmr-stak-8babae3156430f5aa6b804f7c352ffb178097963.tar.gz |
cleanup includes
Diffstat (limited to 'xmrstak/backend/plugin.hpp')
-rw-r--r-- | xmrstak/backend/plugin.hpp | 22 |
1 files changed, 12 insertions, 10 deletions
diff --git a/xmrstak/backend/plugin.hpp b/xmrstak/backend/plugin.hpp index 9ba9716..38f8e53 100644 --- a/xmrstak/backend/plugin.hpp +++ b/xmrstak/backend/plugin.hpp @@ -1,21 +1,23 @@ #pragma once + +#include "xmrstak/misc/environment.hpp" + #include <thread> #include <atomic> #include <vector> #include <string> -#include "IBackend.hpp" +#include "iBackend.hpp" #include <iostream> -#include "../Environment.hpp" #ifndef USE_PRECOMPILED_HEADERS -#ifdef WIN32 -#include <direct.h> -#include <windows.h> -#else -#include <sys/types.h> -#include <dlfcn.h> -#endif -#include <iostream> +# ifdef WIN32 +# include <direct.h> +# include <windows.h> +# else +# include <sys/types.h> +# include <dlfcn.h> +# endif +# include <iostream> #endif namespace xmrstak |