llxmlrpclistener.h
上传用户:king477883
上传日期:2021-03-01
资源大小:9553k
文件大小:2k
源码类别:

游戏引擎

开发平台:

C++ Builder

  1. /**
  2.  * @file   llxmlrpclistener.h
  3.  * @author Nat Goodspeed
  4.  * @date   2009-03-18
  5.  * @brief  LLEventPump API for LLXMLRPCTransaction. This header doesn't
  6.  *         actually define the API; the API is defined by the pump name on
  7.  *         which this class listens, and by the expected content of LLSD it
  8.  *         receives.
  9.  * 
  10.  * $LicenseInfo:firstyear=2009&license=viewergpl$
  11.  * 
  12.  * Copyright (c) 2009-2010, Linden Research, Inc.
  13.  * 
  14.  * Second Life Viewer Source Code
  15.  * The source code in this file ("Source Code") is provided by Linden Lab
  16.  * to you under the terms of the GNU General Public License, version 2.0
  17.  * ("GPL"), unless you have obtained a separate licensing agreement
  18.  * ("Other License"), formally executed by you and Linden Lab.  Terms of
  19.  * the GPL can be found in doc/GPL-license.txt in this distribution, or
  20.  * online at http://secondlifegrid.net/programs/open_source/licensing/gplv2
  21.  * 
  22.  * There are special exceptions to the terms and conditions of the GPL as
  23.  * it is applied to this Source Code. View the full text of the exception
  24.  * in the file doc/FLOSS-exception.txt in this software distribution, or
  25.  * online at
  26.  * http://secondlifegrid.net/programs/open_source/licensing/flossexception
  27.  * 
  28.  * By copying, modifying or distributing this software, you acknowledge
  29.  * that you have read and understood your obligations described above,
  30.  * and agree to abide by those obligations.
  31.  * 
  32.  * ALL LINDEN LAB SOURCE CODE IS PROVIDED "AS IS." LINDEN LAB MAKES NO
  33.  * WARRANTIES, EXPRESS, IMPLIED OR OTHERWISE, REGARDING ITS ACCURACY,
  34.  * COMPLETENESS OR PERFORMANCE.
  35.  * $/LicenseInfo$
  36.  */
  37. #if ! defined(LL_LLXMLRPCLISTENER_H)
  38. #define LL_LLXMLRPCLISTENER_H
  39. #include "llevents.h"
  40. /// Listen on an LLEventPump with specified name for LLXMLRPCTransaction
  41. /// request events.
  42. class LLXMLRPCListener
  43. {
  44. public:
  45.     /// Specify the pump name on which to listen
  46.     LLXMLRPCListener(const std::string& pumpname);
  47.     /// Handle request events on the event pump specified at construction time
  48.     bool process(const LLSD& command);
  49. private:
  50.     LLTempBoundListener mBoundListener;
  51. };
  52. #endif /* ! defined(LL_LLXMLRPCLISTENER_H) */