Commit f394b914 authored by Ashot's avatar Ashot
Browse files

Moved using namespace from header file to cpp

parent b4aba959
Showing with 2 additions and 3 deletions
+2 -3
......@@ -13,6 +13,7 @@
using namespace json_spirit;
using namespace std;
using namespace boost::filesystem;
bool RPCUpdate::started = false;
Object RPCUpdate::statusObj;
......
......@@ -10,8 +10,6 @@
#include "json/json_spirit_value.h"
#include <boost/filesystem.hpp>
using namespace boost::filesystem;
class RPCUpdate
{
public:
......@@ -28,7 +26,7 @@ private:
private:
static Object statusObj;
static bool started;
path tempDir;
boost::filesystem::path tempDir;
};
#endif // RPC_UPDATE_H
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment