summaryrefslogtreecommitdiff
path: root/cpp/include/qmf/engine/Console.h
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/include/qmf/engine/Console.h')
-rw-r--r--cpp/include/qmf/engine/Console.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/cpp/include/qmf/engine/Console.h b/cpp/include/qmf/engine/Console.h
index 8463023468..03b3993395 100644
--- a/cpp/include/qmf/engine/Console.h
+++ b/cpp/include/qmf/engine/Console.h
@@ -33,7 +33,7 @@ namespace qmf {
namespace engine {
class Console;
- struct ConsoleImpl;
+ class ConsoleImpl;
class BrokerProxyImpl;
class AgentProxy;
struct AgentProxyImpl;
@@ -54,7 +54,7 @@ namespace engine {
private:
friend struct MethodResponseImpl;
- friend struct ConsoleImpl;
+ friend class ConsoleImpl;
MethodResponse(MethodResponseImpl* impl);
MethodResponseImpl* impl;
};
@@ -173,7 +173,7 @@ namespace engine {
void sendQuery(const Query& query, void* context, const AgentProxy* agent = 0);
private:
- friend struct ConsoleImpl;
+ friend class ConsoleImpl;
friend struct StaticContext;
BrokerProxyImpl* impl;
};