diff options
| author | Stephen D. Huston <shuston@apache.org> | 2009-09-24 02:23:57 +0000 |
|---|---|---|
| committer | Stephen D. Huston <shuston@apache.org> | 2009-09-24 02:23:57 +0000 |
| commit | 32ee5f2b1e1676f05ec1261a897107ae54fde62f (patch) | |
| tree | 56dd2fa54b0ef7f3d57bb4604427a640681e3ecc /qpid/cpp/src/qmf/ConsoleEngine.h | |
| parent | 1785ed4d271d3883f0e520f19763cf6d3a1790df (diff) | |
| download | qpid-python-32ee5f2b1e1676f05ec1261a897107ae54fde62f.tar.gz | |
Use struct/class consistently
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@818347 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/cpp/src/qmf/ConsoleEngine.h')
| -rw-r--r-- | qpid/cpp/src/qmf/ConsoleEngine.h | 26 |
1 files changed, 13 insertions, 13 deletions
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; }; } |
