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 | 9d23fd30e819f7176b9583fc2bd548f425e93831 (patch) | |
| tree | a41779755f5a1bb40f66af933a5e4d8141459f4b /cpp/src/qmf/Query.h | |
| parent | fad926fe71bfa6272306fa4f152374b8c85f186d (diff) | |
| download | qpid-python-9d23fd30e819f7176b9583fc2bd548f425e93831.tar.gz | |
Use struct/class consistently
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@818347 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'cpp/src/qmf/Query.h')
| -rw-r--r-- | cpp/src/qmf/Query.h | 6 |
1 files changed, 3 insertions, 3 deletions
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; |
