summaryrefslogtreecommitdiff
path: root/qpid/cpp/src/qmf/EventNotifierImpl.cpp
diff options
context:
space:
mode:
authorAndrew Stitcher <astitcher@apache.org>2012-05-18 22:05:20 +0000
committerAndrew Stitcher <astitcher@apache.org>2012-05-18 22:05:20 +0000
commitc8b9afd3aeaefc1cb2579bf86b79caca2b238e64 (patch)
treefe0ac8a589b77b8883f6bff0112bca823b342de1 /qpid/cpp/src/qmf/EventNotifierImpl.cpp
parent351b9822649f305fc270c30e3c6db6b81761d984 (diff)
downloadqpid-python-c8b9afd3aeaefc1cb2579bf86b79caca2b238e64.tar.gz
QPID-4005: Eliminate "using" especially "using namespace" from header file
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1340277 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/src/qmf/EventNotifierImpl.cpp')
-rw-r--r--qpid/cpp/src/qmf/EventNotifierImpl.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/qpid/cpp/src/qmf/EventNotifierImpl.cpp b/qpid/cpp/src/qmf/EventNotifierImpl.cpp
index 20114aaa5e..81b6d637a3 100644
--- a/qpid/cpp/src/qmf/EventNotifierImpl.cpp
+++ b/qpid/cpp/src/qmf/EventNotifierImpl.cpp
@@ -21,6 +21,8 @@
#include "qmf/AgentSessionImpl.h"
#include "qmf/ConsoleSessionImpl.h"
+namespace qmf {
+
EventNotifierImpl::EventNotifierImpl(AgentSession& agentSession)
: readable(false), agent(agentSession)
{
@@ -54,3 +56,5 @@ bool EventNotifierImpl::isReadable() const
{
return this->readable;
}
+
+}