From 9d23fd30e819f7176b9583fc2bd548f425e93831 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/qpid@818347 13f79535-47bb-0310-9956-ffa450edef68 --- cpp/src/qmf/Query.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'cpp/src/qmf/Query.h') diff --git a/cpp/src/qmf/Query.h b/cpp/src/qmf/Query.h index 96ad2b0d24..bd3ed6b862 100644 --- a/cpp/src/qmf/Query.h +++ b/cpp/src/qmf/Query.h @@ -25,11 +25,11 @@ namespace qmf { - struct Object; + class Object; struct QueryElementImpl; struct QueryImpl; struct QueryExpressionImpl; - struct SchemaClassKey; + class SchemaClassKey; enum ValueOper { O_EQ = 1, @@ -97,7 +97,7 @@ namespace qmf { bool getDecreasing() const; private: - friend class QueryImpl; + friend struct QueryImpl; friend class BrokerProxyImpl; Query(QueryImpl* impl); QueryImpl* impl; -- cgit v1.2.1