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/Query.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/Query.h')
| -rw-r--r-- | qpid/cpp/src/qmf/Query.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/qpid/cpp/src/qmf/Query.h b/qpid/cpp/src/qmf/Query.h index 96ad2b0d24..bd3ed6b862 100644 --- a/qpid/cpp/src/qmf/Query.h +++ b/qpid/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; |
