diff options
Diffstat (limited to 'src/include/broker.h')
-rw-r--r-- | src/include/broker.h | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/src/include/broker.h b/src/include/broker.h index 6d148ae..ac78041 100644 --- a/src/include/broker.h +++ b/src/include/broker.h @@ -9,8 +9,8 @@ #include "depot.h" #include "operators.h" -#include <string> #include <map> +#include <string> namespace Binc { @@ -60,7 +60,7 @@ namespace Binc { std::map<std::string, bool> deletables; public: - Operator * get(const std::string &name) const; + Operator *get(const std::string &name) const; void assign(const std::string &fname, Operator *o, bool deletable = false); Operator::ParseResult parseStub(Request &cmd); @@ -71,13 +71,9 @@ namespace Binc { ~Broker(void); }; - inline Broker::Broker(Broker &) - { - } + inline Broker::Broker(Broker &) {} - inline Broker::Broker(const Broker &) - { - } + inline Broker::Broker(const Broker &) {} } |