summaryrefslogtreecommitdiff
path: root/qpid/cpp/src
diff options
context:
space:
mode:
authorAndrew Stitcher <astitcher@apache.org>2012-12-20 23:55:17 +0000
committerAndrew Stitcher <astitcher@apache.org>2012-12-20 23:55:17 +0000
commit8096f32a11de1fb3a4f5d40db610c6845b251562 (patch)
tree9a76093aefbf9d0c24bc83a1a38fd88d61becbf3 /qpid/cpp/src
parentac95d2b73782e0ae88eeeab4fb22f695bef7b16e (diff)
downloadqpid-python-8096f32a11de1fb3a4f5d40db610c6845b251562.tar.gz
NO-JIRA: Removed unnecessary header includes
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1424767 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/src')
-rw-r--r--qpid/cpp/src/qpid/store/MessageStorePlugin.h14
1 files changed, 9 insertions, 5 deletions
diff --git a/qpid/cpp/src/qpid/store/MessageStorePlugin.h b/qpid/cpp/src/qpid/store/MessageStorePlugin.h
index 2631f592a3..1fcde6683d 100644
--- a/qpid/cpp/src/qpid/store/MessageStorePlugin.h
+++ b/qpid/cpp/src/qpid/store/MessageStorePlugin.h
@@ -24,18 +24,22 @@
#include "qpid/Plugin.h"
#include "qpid/Options.h"
-#include "qpid/broker/Broker.h"
#include "qpid/broker/MessageStore.h"
-#include "qpid/broker/PersistableExchange.h"
-#include "qpid/broker/PersistableMessage.h"
-#include "qpid/broker/PersistableQueue.h"
-#include "qpid/management/Manageable.h"
+//#include "qpid/management/Manageable.h"
#include <string>
using namespace qpid;
namespace qpid {
+
+namespace broker {
+class Broker;
+class PersistableExchange;
+class PersistableMessage;
+class PersistableQueue;
+}
+
namespace store {
class StorageProvider;