00001 #ifndef QPID_CLIENT_HANDLEACCESS_H
00002 #define QPID_CLIENT_HANDLEACCESS_H
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025 #include <Handle.h>
00026
00027 namespace qpid {
00028 namespace client {
00029
00033 template <class T>
00034 class HandleAccess
00035 {
00036 public:
00037 static boost::shared_ptr<T> getImpl(Handle<T>& h) { return h.impl; }
00038 };
00039 }}
00040
00041 #endif