00001 #ifndef _Vhost_
00002 #define _Vhost_
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023 #include "qpid/management/Manageable.h"
00024 #include "qpid/management/Vhost.h"
00025 #include <boost/shared_ptr.hpp>
00026
00027 namespace qpid {
00028 namespace broker {
00029
00030 class Vhost : public management::Manageable
00031 {
00032 private:
00033
00034 management::Vhost::shared_ptr mgmtObject;
00035
00036 public:
00037
00038 typedef boost::shared_ptr<Vhost> shared_ptr;
00039
00040 Vhost (management::Manageable* parentBroker);
00041
00042 management::ManagementObject::shared_ptr GetManagementObject (void) const
00043 { return mgmtObject; }
00044
00045 management::Manageable::status_t ManagementMethod (uint32_t, management::Args&)
00046 { return management::Manageable::STATUS_OK; }
00047 };
00048
00049 }}
00050
00051 #endif