From 32ee5f2b1e1676f05ec1261a897107ae54fde62f Mon Sep 17 00:00:00 2001 From: "Stephen D. Huston" Date: Thu, 24 Sep 2009 02:23:57 +0000 Subject: Use struct/class consistently git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@818347 13f79535-47bb-0310-9956-ffa450edef68 --- qpid/cpp/src/qmf/ConsoleEngine.h | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) (limited to 'qpid/cpp/src/qmf/ConsoleEngine.h') diff --git a/qpid/cpp/src/qmf/ConsoleEngine.h b/qpid/cpp/src/qmf/ConsoleEngine.h index a5aa990a76..455ec69901 100644 --- a/qpid/cpp/src/qmf/ConsoleEngine.h +++ b/qpid/cpp/src/qmf/ConsoleEngine.h @@ -32,13 +32,13 @@ namespace qmf { class ConsoleEngine; - class ConsoleEngineImpl; + struct ConsoleEngineImpl; class BrokerProxyImpl; class AgentProxy; - class AgentProxyImpl; - class MethodResponseImpl; - class QueryResponseImpl; - class QueryContext; + struct AgentProxyImpl; + struct MethodResponseImpl; + struct QueryResponseImpl; + struct QueryContext; /** * @@ -52,8 +52,8 @@ namespace qmf { const Value* getArgs() const; private: - friend class MethodResponseImpl; - friend class ConsoleEngineImpl; + friend struct MethodResponseImpl; + friend struct ConsoleEngineImpl; MethodResponse(MethodResponseImpl* impl); MethodResponseImpl* impl; }; @@ -70,8 +70,8 @@ namespace qmf { const Object* getObject(uint32_t idx) const; private: - friend class QueryResponseImpl; - friend class QueryContext; + friend struct QueryResponseImpl; + friend struct QueryContext; QueryResponse(QueryResponseImpl* impl); QueryResponseImpl *impl; }; @@ -135,7 +135,7 @@ namespace qmf { const char* getLabel() const; private: - friend class AgentProxyImpl; + friend struct AgentProxyImpl; friend class BrokerProxyImpl; AgentProxy(AgentProxyImpl* impl); AgentProxyImpl* impl; @@ -165,8 +165,8 @@ namespace qmf { void sendQuery(const Query& query, void* context, const AgentProxy* agent = 0); private: - friend class ConsoleEngineImpl; - friend class StaticContext; + friend struct ConsoleEngineImpl; + friend struct StaticContext; BrokerProxyImpl* impl; }; @@ -217,7 +217,7 @@ namespace qmf { private: friend class BrokerProxyImpl; - friend class AgentProxyImpl; + friend struct AgentProxyImpl; ConsoleEngineImpl* impl; }; } -- cgit v1.2.1