📄 iqhandler.h
字号:
/* Copyright (c) 2004-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 IQHANDLER_H__#define IQHANDLER_H__#include "stanza.h"namespace gloox{ /** * @brief A virtual interface which can be reimplemented to receive IQ stanzas. * * Derived classes can be registered as IqHandlers with the Client. * Upon an incoming IQ packet @ref handleIq() will be called. * @author Jakob Schroeter <js@camaya.net> */ class GLOOX_API IqHandler { public: /** * Virtual Destructor. */ virtual ~IqHandler() {} /** * Reimplement this function if you want to be notified about incoming IQs. * @param stanza The complete Stanza. * @return Indicates whether a request of type 'get' or 'set' has been handled. This includes * the obligatory 'result' answer. If you return @b false, a 'error' will be sent. */ virtual bool handleIq( Stanza *stanza ) = 0; /** * Reimplement this function if you want to be notified about * incoming IQs with a specific value of the @c id attribute. You * have to enable tracking of those IDs using Client::trackID(). * This is usually useful for IDs that generate a positive reply, i.e. * <iq type='result' id='reg'/> where a namespace filter wouldn't * work. * @param stanza The complete Stanza. * @param context A value to restore context, stored with ClientBase::trackID(). * @return Indicates whether a request of type 'get' or 'set' has been handled. This includes * the obligatory 'result' answer. If you return @b false, a 'error' will be sent. */ virtual bool handleIqID( Stanza *stanza, int context ) = 0; };}#endif // IQHANDLER_H__
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -