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

游戏引擎

开发平台:

C++ Builder

  1. /**
  2.  * @file   llcapabilityprovider.h
  3.  * @author Nat Goodspeed
  4.  * @date   2009-01-07
  5.  * @brief  Interface by which to reference (e.g.) LLViewerRegion to obtain a
  6.  *         capability.
  7.  * 
  8.  * $LicenseInfo:firstyear=2009&license=viewergpl$
  9.  * 
  10.  * Copyright (c) 2009-2010, Linden Research, Inc.
  11.  * 
  12.  * Second Life Viewer Source Code
  13.  * The source code in this file ("Source Code") is provided by Linden Lab
  14.  * to you under the terms of the GNU General Public License, version 2.0
  15.  * ("GPL"), unless you have obtained a separate licensing agreement
  16.  * ("Other License"), formally executed by you and Linden Lab.  Terms of
  17.  * the GPL can be found in doc/GPL-license.txt in this distribution, or
  18.  * online at http://secondlifegrid.net/programs/open_source/licensing/gplv2
  19.  * 
  20.  * There are special exceptions to the terms and conditions of the GPL as
  21.  * it is applied to this Source Code. View the full text of the exception
  22.  * in the file doc/FLOSS-exception.txt in this software distribution, or
  23.  * online at
  24.  * http://secondlifegrid.net/programs/open_source/licensing/flossexception
  25.  * 
  26.  * By copying, modifying or distributing this software, you acknowledge
  27.  * that you have read and understood your obligations described above,
  28.  * and agree to abide by those obligations.
  29.  * 
  30.  * ALL LINDEN LAB SOURCE CODE IS PROVIDED "AS IS." LINDEN LAB MAKES NO
  31.  * WARRANTIES, EXPRESS, IMPLIED OR OTHERWISE, REGARDING ITS ACCURACY,
  32.  * COMPLETENESS OR PERFORMANCE.
  33.  * $/LicenseInfo$
  34.  */
  35. #if ! defined(LL_LLCAPABILITYPROVIDER_H)
  36. #define LL_LLCAPABILITYPROVIDER_H
  37. #include "llhost.h"
  38. #include <string>
  39. /// Interface for obtaining a capability URL, given a capability name
  40. class LLCapabilityProvider
  41. {
  42. public:
  43.     virtual ~LLCapabilityProvider() {}
  44.     /**
  45.      * Get a capability URL, given a capability name. Returns empty string if
  46.      * no such capability is defined on this provider.
  47.      */
  48.     virtual std::string getCapability(const std::string& name) const = 0;
  49.     /**
  50.      * Get host to which to send that capability request.
  51.      */
  52.     virtual LLHost getHost() const = 0;
  53.     /**
  54.      * Describe this LLCapabilityProvider for logging etc.
  55.      */
  56.     virtual std::string getDescription() const = 0;
  57. };
  58. #endif /* ! defined(LL_LLCAPABILITYPROVIDER_H) */