⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 flexoffhandler.h

📁 Jabber code library, developed with c
💻 H
字号:
/*  Copyright (c) 2005-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 FLEXOFFHANDLER_H__#define FLEXOFFHANDLER_H__#include "gloox.h"namespace gloox{  /**   * Describes the possible results of a message retrieval or deletion request.   */  enum FlexibleOfflineResult  {    FomrRemoveSuccess,           /**< Message(s) were removed successfully. */    FomrRequestSuccess,          /**< Message(s) were fetched successfully. */    FomrForbidden,               /**< The requester is a JID other than an authorized resource of the                                  * user. Something wnet serieously wrong */    FomrItemNotFound,            /**< The requested node (message ID) does not exist. */    FomrUnknownError             /**< An error occurred which is not specified in XEP-0013. */  };  /**   * @brief Implementation of this virtual interface allows for retrieval of offline messages following   * XEP-0030.   *   * @author Jakob Schroeter <js@camaya.net>   * @since 0.7   */  class GLOOX_API FlexibleOfflineHandler  {    public:      /**       * Virtual Destructor.       */      virtual ~FlexibleOfflineHandler() {}      /**       * This function is called to indicate whether the server supports XEP-0013 or not.       * Call @ref FlexibleOffline::checkSupport() to trigger the check.       * @param support Whether the server support XEP-0013 or not.       */      virtual void handleFlexibleOfflineSupport( bool support ) = 0;      /**       * This function is called to announce the number of available offline messages.       * Call @ref FlexibleOffline::getMsgCount() to trigger the check.       * @param num The number of stored offline messages.       */      virtual void handleFlexibleOfflineMsgNum( int num ) = 0;      /**       * This function is called when the offline message headers arrive.       * Call @ref FlexibleOffline::fetchHeaders() to trigger the check.       * @param headers A map of ID/sender pairs describing the offline messages.       */      virtual void handleFlexibleOfflineMessageHeaders( StringMap& headers ) = 0;      /**       * This function is called to indicate the result of a fetch or delete instruction.       * @param foResult The result of the operation.       */      virtual void handleFlexibleOfflineResult( FlexibleOfflineResult foResult ) = 0;  };}#endif // FLEXOFFHANDLER_H__

⌨️ 快捷键说明

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