queuepropertyfactory.h

来自「java开源的企业总线.xmlBlaster」· C头文件 代码 · 共 64 行

H
64
字号
/*------------------------------------------------------------------------------Name:      QueuePropertyFactory.hProject:   xmlBlaster.orgCopyright: xmlBlaster.org, see xmlBlaster-LICENSE fileComment:   Holding callback queue propertiesAuthor:    laghi------------------------------------------------------------------------------*//** * Factory to construct org::xmlBlaster::util::queue::QueueProperty objects * <p /> * See org::xmlBlaster::util::qos::ConnectQos for XML syntax. * @see org.xmlBlaster.client.qos.ConnectQos */#ifndef _UTIL_QUEUE_QUEUEPROPERTYFACTORY_H#define _UTIL_QUEUE_QUEUEPROPERTYFACTORY_H#include <util/qos/storage/QueuePropertyBase.h>#include <util/parser/XmlHandlerBase.h>#include <util/qos/address/AddressFactory.h>#include <util/qos/address/Address.h>#include <util/qos/address/CallbackAddress.h>namespace org { namespace xmlBlaster { namespace util { namespace qos { namespace storage {class Dll_Export QueuePropertyFactory : public parser::XmlHandlerBase{private:   const std::string  ME;   QueuePropertyBase  prop_;   bool               inAddress_;   org::xmlBlaster::util::qos::address::AddressFactory addressFactory_;   std::string  RELATING;public:   QueuePropertyFactory(org::xmlBlaster::util::Global& global);   ~QueuePropertyFactory();   QueuePropertyBase getQueueProperty();   /**    * Called for XML callback start tag    */   void startElement(const std::string &name, const parser::AttributeMap& attrs);   void characters(const std::string &ch);   /** End element. */   void endElement(const std::string &name);/*   QueuePropertyBase&   readQueueProperty(const std::string& literal, QueuePropertyBase& prop);*/   QueuePropertyBase readObject(const std::string& literal);};}}}}} // namespaces#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?