diff --git a/Include/Zmq/Context.mqh b/Include/Zmq/Context.mqh index 7acd2ff..2583125 100644 --- a/Include/Zmq/Context.mqh +++ b/Include/Zmq/Context.mqh @@ -78,7 +78,7 @@ class ContextHandleManager: public HandleManager //| and in a manner not easily recognized by humans, for example: | //| "__3kewducdxhkd__" | //+------------------------------------------------------------------+ -class Context: public GlobalHandle +class Context: public GlobalHandle { protected: int get(int option) {return zmq_ctx_get(m_ref,option);} @@ -89,7 +89,7 @@ public: static intptr_t create() {return zmq_ctx_new();} static void destroy(intptr_t handle) {if(0!=zmq_ctx_term(handle)) {Debug("failed to terminate context");}} - Context(string shared=NULL):GlobalHandle(shared) {} + Context(string shared=NULL):GlobalHandle(shared) {} bool shutdown() {return 0==zmq_ctx_shutdown(m_ref);}