📄 oob.h
字号:
/* Copyright (c) 2006-2008 by Jakob Schroeter <js@camaya.net> This file is part of the gloox library. http://camaya.net/gloox This software is distributed under a license. The full license agreement can be found in the file LICENSE in this distribution. This software may not be copied, modified, sold or distributed other than expressed in the named license agreement. This software is distributed without any warranty.*/#ifndef OOB_H__#define OOB_H__#include "stanzaextension.h"#include "macros.h"#include <string>namespace gloox{ class Tag; /** * @brief This is an abstraction of a jabber:x:oob namespace element or a jabber:iq:oob namespace element * as specified in XEP-0066. * * XEP version: 1.5 * @author Jakob Schroeter <js@camaya.net> * @since 0.9 */ class GLOOX_API OOB : public StanzaExtension { public: /** * Constructs an empty OOB object. * @param url The out-of-band URL. * @param description The URL's optional description. * @param iqext Whether this object extends an IQ or a Presence stanza (results in * either jabber:x:oob or jabber:iq:oob namespaced element). */ OOB( const std::string& url, const std::string& description, bool iqext ); /** * Constructs an OOB object from the given Tag. To be recognized properly, the Tag should * either have a name 'x' of in the jabber:x:oob namespace, or a name of 'query' in the * jabber:iq:oob namespace. * @param tag The Tag to parse. */ OOB( Tag *tag ); /** * Virtual destructor. */ virtual ~OOB(); /** * Returns the out-of-band URL. * @return The out-of-band URL. */ const std::string& url() const { return m_url; } /** * Returns the URL's description. * @return The URL's description. */ const std::string& desc() const { return m_desc; } // reimplemented from StanzaExtension Tag* tag() const; private: std::string m_xmlns; std::string m_url; std::string m_desc; bool m_iqext; bool m_valid; };}#endif // OOB_H__
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -