summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTed Ross <tross@apache.org>2010-03-30 21:37:26 +0000
committerTed Ross <tross@apache.org>2010-03-30 21:37:26 +0000
commit153da67fa601a2f20da496b1982469f67ba7ea0a (patch)
treece7447cb990c848396f11ff20835defc574ce7ac
parente030901ad61f156c481c76f9c552f424fd36319e (diff)
downloadqpid-python-153da67fa601a2f20da496b1982469f67ba7ea0a.tar.gz
Fixed namespaces for Variant.
git-svn-id: https://svn.apache.org/repos/asf/qpid/branches/qmf-devel0.7a@929309 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--qpid/cpp/examples/qmf-agent/example.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/qpid/cpp/examples/qmf-agent/example.cpp b/qpid/cpp/examples/qmf-agent/example.cpp
index 96edc2f4d4..292737f726 100644
--- a/qpid/cpp/examples/qmf-agent/example.cpp
+++ b/qpid/cpp/examples/qmf-agent/example.cpp
@@ -24,7 +24,7 @@
#include <qpid/agent/ManagementAgent.h>
#include <qpid/sys/Mutex.h>
#include <qpid/sys/Time.h>
-#include "qpid/messaging/Variant.h"
+#include "qpid/types/Variant.h"
#include "qmf/org/apache/qpid/agent/example/Parent.h"
#include "qmf/org/apache/qpid/agent/example/Child.h"
#include "qmf/org/apache/qpid/agent/example/ArgsParentCreate_child.h"
@@ -45,7 +45,7 @@ using qpid::management::ManagementObject;
using qpid::management::Manageable;
using qpid::management::Args;
using qpid::sys::Mutex;
-using qpid::messaging::Variant;
+using qpid::types::Variant;
namespace _qmf = qmf::org::apache::qpid::agent::example;
class ChildClass;