diff options
Diffstat (limited to 'cpp/src/qpid/client/Handle.h')
| -rw-r--r-- | cpp/src/qpid/client/Handle.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/cpp/src/qpid/client/Handle.h b/cpp/src/qpid/client/Handle.h index 1a092b7209..12fb4cf3c1 100644 --- a/cpp/src/qpid/client/Handle.h +++ b/cpp/src/qpid/client/Handle.h @@ -30,9 +30,11 @@ namespace client { template <class T> class HandlePrivate; /** - * A handle is like a pointer: it points to some underlying object. + * A handle is like a pointer: it points to some implementation object. + * Copying the handle does not copy the object. + * * Handles can be null, like a 0 pointer. Use isValid(), isNull() or the - * implicit conversion to bool to test for a null handle. + * conversion to bool to test for a null handle. */ template <class T> class Handle { public: |
