aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Services
diff options
context:
space:
mode:
authorDiva Canto2010-12-01 16:01:22 -0800
committerDiva Canto2010-12-01 16:01:22 -0800
commit7d24dbca3c85cafe182648139ab132563e3e1cdd (patch)
tree8e6573648f7bc9391f645ed05fa3449192a4d93e /OpenSim/Services
parentMerge branch 'master' of ssh://opensimulator.org/var/git/opensim (diff)
downloadopensim-SC_OLD-7d24dbca3c85cafe182648139ab132563e3e1cdd.zip
opensim-SC_OLD-7d24dbca3c85cafe182648139ab132563e3e1cdd.tar.gz
opensim-SC_OLD-7d24dbca3c85cafe182648139ab132563e3e1cdd.tar.bz2
opensim-SC_OLD-7d24dbca3c85cafe182648139ab132563e3e1cdd.tar.xz
Added some comments. Better than listening to the boring speaker...
Diffstat (limited to 'OpenSim/Services')
-rw-r--r--OpenSim/Services/HypergridService/HGAssetService.cs5
-rw-r--r--OpenSim/Services/HypergridService/HGInventoryService.cs7
2 files changed, 12 insertions, 0 deletions
diff --git a/OpenSim/Services/HypergridService/HGAssetService.cs b/OpenSim/Services/HypergridService/HGAssetService.cs
index 584ab6f..a82d0d1 100644
--- a/OpenSim/Services/HypergridService/HGAssetService.cs
+++ b/OpenSim/Services/HypergridService/HGAssetService.cs
@@ -42,6 +42,11 @@ using OpenSim.Services.AssetService;
42 42
43namespace OpenSim.Services.HypergridService 43namespace OpenSim.Services.HypergridService
44{ 44{
45 /// <summary>
46 /// Hypergrid asset service. It serves the IAssetService interface,
47 /// but implements it in ways that are appropriate for inter-grid
48 /// asset exchanges.
49 /// </summary>
45 public class HGAssetService : OpenSim.Services.AssetService.AssetService, IAssetService 50 public class HGAssetService : OpenSim.Services.AssetService.AssetService, IAssetService
46 { 51 {
47 private static readonly ILog m_log = 52 private static readonly ILog m_log =
diff --git a/OpenSim/Services/HypergridService/HGInventoryService.cs b/OpenSim/Services/HypergridService/HGInventoryService.cs
index a04f0c4..9ee1ae4 100644
--- a/OpenSim/Services/HypergridService/HGInventoryService.cs
+++ b/OpenSim/Services/HypergridService/HGInventoryService.cs
@@ -40,6 +40,13 @@ using OpenSim.Server.Base;
40 40
41namespace OpenSim.Services.HypergridService 41namespace OpenSim.Services.HypergridService
42{ 42{
43 /// <summary>
44 /// Hypergrid inventory service. It serves the IInventoryService interface,
45 /// but implements it in ways that are appropriate for inter-grid
46 /// inventory exchanges. Specifically, it does not performs deletions
47 /// and it responds to GetRootFolder requests with the ID of the
48 /// Suitcase folder, not the actual "My Inventory" folder.
49 /// </summary>
43 public class HGInventoryService : XInventoryService, IInventoryService 50 public class HGInventoryService : XInventoryService, IInventoryService
44 { 51 {
45 private static readonly ILog m_log = 52 private static readonly ILog m_log =