aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Region/Framework/Interfaces/ISimulationDataStore.cs
diff options
context:
space:
mode:
authorMelanie2012-08-15 02:06:22 +0100
committerMelanie2012-08-15 02:06:22 +0100
commitdc82ad0f7abe5f09675dfc3768da2a0134503916 (patch)
treee0745126d25725ca5650a088de9d54fd4e6bf349 /OpenSim/Region/Framework/Interfaces/ISimulationDataStore.cs
parentActually add the module (diff)
downloadopensim-SC_OLD-dc82ad0f7abe5f09675dfc3768da2a0134503916.zip
opensim-SC_OLD-dc82ad0f7abe5f09675dfc3768da2a0134503916.tar.gz
opensim-SC_OLD-dc82ad0f7abe5f09675dfc3768da2a0134503916.tar.bz2
opensim-SC_OLD-dc82ad0f7abe5f09675dfc3768da2a0134503916.tar.xz
Add a skeleton for a name value storage associated with regions
Diffstat (limited to 'OpenSim/Region/Framework/Interfaces/ISimulationDataStore.cs')
-rw-r--r--OpenSim/Region/Framework/Interfaces/ISimulationDataStore.cs6
1 files changed, 6 insertions, 0 deletions
diff --git a/OpenSim/Region/Framework/Interfaces/ISimulationDataStore.cs b/OpenSim/Region/Framework/Interfaces/ISimulationDataStore.cs
index e424976..3787ca0 100644
--- a/OpenSim/Region/Framework/Interfaces/ISimulationDataStore.cs
+++ b/OpenSim/Region/Framework/Interfaces/ISimulationDataStore.cs
@@ -127,6 +127,12 @@ namespace OpenSim.Region.Framework.Interfaces
127 /// <param name="regionUUID">the region UUID</param> 127 /// <param name="regionUUID">the region UUID</param>
128 void RemoveRegionEnvironmentSettings(UUID regionUUID); 128 void RemoveRegionEnvironmentSettings(UUID regionUUID);
129 129
130 void SaveExtra(UUID regionID, string name, string val);
131
132 void RemoveExtra(UUID regionID, string name);
133
134 Dictionary<string, string> GetExtra(UUID regionID);
135
130 void Shutdown(); 136 void Shutdown();
131 } 137 }
132} 138}