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

📄 adhoccommandprovider.h

📁 Jabber code library, developed with c
💻 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 ADHOCCOMMANDPROVIDER_H__#define ADHOCCOMMANDPROVIDER_H__#include "tag.h"#include "jid.h"#include <list>#include <map>#include <string>namespace gloox{  /**   * @brief A virtual interface for an Ad-hoc Command Provider according to XEP-0050.   *   * Derived classes can be registered as Command Providers with the Adhoc object.   *   * @author Jakob Schroeter <js@camaya.net>   */  class GLOOX_API AdhocCommandProvider  {    public:      /**       * Virtual destructor.       */      virtual ~AdhocCommandProvider() {}      /**       * This function is called when an Ad-hoc Command needs to be handled.       * The callee is responsible for the whole command execution, i.e. session       * handling etc.       * @param command The name of the command to be executed.       * @param tag The complete command tag.       * @param from The sender of the command request.       * @param id The command's id. An opaque string which should be used only as the id of the       * iq result or error stanza.       */      virtual void handleAdhocCommand( const std::string& command, Tag *tag, const JID& from,                                       const std::string& id ) = 0;  };}#endif // ADHOCCOMMANDPROVIDER_H__

⌨️ 快捷键说明

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