summaryrefslogtreecommitdiff
path: root/cpp/src
diff options
context:
space:
mode:
authorAndrew Stitcher <astitcher@apache.org>2013-09-16 22:46:53 +0000
committerAndrew Stitcher <astitcher@apache.org>2013-09-16 22:46:53 +0000
commit9d4bb38deb210f8821f49d82c7e092eab07152dc (patch)
tree6c974fdabfa2987307f4a6442ec5026ff7701bbf /cpp/src
parent883a9e3b97a4fd3490e27292450af6dae6790ca4 (diff)
downloadqpid-python-9d4bb38deb210f8821f49d82c7e092eab07152dc.tar.gz
NO-JIRA: missing includes that are really needed
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1523828 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src')
-rw-r--r--cpp/src/qpid/ha/QueueReplicator.h1
-rw-r--r--cpp/src/qpid/log/Logger.cpp1
-rw-r--r--cpp/src/tests/ClientSessionTest.cpp1
-rw-r--r--cpp/src/tests/MessageReplayTracker.cpp2
-rw-r--r--cpp/src/tests/MessagingFixture.h2
-rw-r--r--cpp/src/tests/QueuePolicyTest.cpp2
6 files changed, 9 insertions, 0 deletions
diff --git a/cpp/src/qpid/ha/QueueReplicator.h b/cpp/src/qpid/ha/QueueReplicator.h
index 8e317f01f9..01abc88843 100644
--- a/cpp/src/qpid/ha/QueueReplicator.h
+++ b/cpp/src/qpid/ha/QueueReplicator.h
@@ -26,6 +26,7 @@
#include "hash.h"
#include "qpid/broker/Exchange.h"
#include <boost/enable_shared_from_this.hpp>
+#include <boost/function.hpp>
#include <iosfwd>
namespace qpid {
diff --git a/cpp/src/qpid/log/Logger.cpp b/cpp/src/qpid/log/Logger.cpp
index 16b2f56049..8242acc87e 100644
--- a/cpp/src/qpid/log/Logger.cpp
+++ b/cpp/src/qpid/log/Logger.cpp
@@ -24,6 +24,7 @@
#include "qpid/sys/Time.h"
#include "qpid/DisableExceptionLogging.h"
+#include "boost/version.hpp"
#if (BOOST_VERSION >= 104000)
#include <boost/serialization/singleton.hpp>
#else
diff --git a/cpp/src/tests/ClientSessionTest.cpp b/cpp/src/tests/ClientSessionTest.cpp
index 2da96bf30c..2236882eed 100644
--- a/cpp/src/tests/ClientSessionTest.cpp
+++ b/cpp/src/tests/ClientSessionTest.cpp
@@ -37,6 +37,7 @@
#include <boost/lexical_cast.hpp>
#include <boost/bind.hpp>
#include <boost/ptr_container/ptr_vector.hpp>
+#include <boost/format.hpp>
#include <vector>
diff --git a/cpp/src/tests/MessageReplayTracker.cpp b/cpp/src/tests/MessageReplayTracker.cpp
index e35f673683..c0778247f0 100644
--- a/cpp/src/tests/MessageReplayTracker.cpp
+++ b/cpp/src/tests/MessageReplayTracker.cpp
@@ -23,6 +23,8 @@
#include "qpid/client/MessageReplayTracker.h"
#include "qpid/sys/Time.h"
+#include <boost/format.hpp>
+
namespace qpid {
namespace tests {
diff --git a/cpp/src/tests/MessagingFixture.h b/cpp/src/tests/MessagingFixture.h
index c18869a7c3..1d70d4cfa6 100644
--- a/cpp/src/tests/MessagingFixture.h
+++ b/cpp/src/tests/MessagingFixture.h
@@ -35,6 +35,8 @@
#include "qpid/messaging/Message.h"
#include "qpid/types/Variant.h"
+#include <boost/format.hpp>
+
namespace qpid {
namespace tests {
diff --git a/cpp/src/tests/QueuePolicyTest.cpp b/cpp/src/tests/QueuePolicyTest.cpp
index 00e964602a..ce1b0addea 100644
--- a/cpp/src/tests/QueuePolicyTest.cpp
+++ b/cpp/src/tests/QueuePolicyTest.cpp
@@ -28,6 +28,8 @@
#include "qpid/framing/reply_exceptions.h"
#include "BrokerFixture.h"
+#include <boost/format.hpp>
+
using namespace qpid::broker;
using namespace qpid::client;
using namespace qpid::framing;