diff options
| author | Andrew Stitcher <astitcher@apache.org> | 2012-05-18 22:05:20 +0000 |
|---|---|---|
| committer | Andrew Stitcher <astitcher@apache.org> | 2012-05-18 22:05:20 +0000 |
| commit | b31fff4836cabe496ff1dd3bc5fefd7422bd1bbe (patch) | |
| tree | 2fb44f0acfa7a0b4109ed1bf1e4c09e3cda1df27 /cpp/src/qmf/EventNotifierImpl.cpp | |
| parent | 0e6e89722a17d7cb06d1e5ebfb3b4900e5f9eb70 (diff) | |
| download | qpid-python-b31fff4836cabe496ff1dd3bc5fefd7422bd1bbe.tar.gz | |
QPID-4005: Eliminate "using" especially "using namespace" from header file
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1340277 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qmf/EventNotifierImpl.cpp')
| -rw-r--r-- | cpp/src/qmf/EventNotifierImpl.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/cpp/src/qmf/EventNotifierImpl.cpp b/cpp/src/qmf/EventNotifierImpl.cpp index 20114aaa5e..81b6d637a3 100644 --- a/cpp/src/qmf/EventNotifierImpl.cpp +++ b/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; } + +} |
