From dc82ad0f7abe5f09675dfc3768da2a0134503916 Mon Sep 17 00:00:00 2001
From: Melanie
Date: Wed, 15 Aug 2012 02:06:22 +0100
Subject: Add a skeleton for a name value storage associated with regions
---
OpenSim/Region/Framework/Interfaces/ISimulationDataStore.cs | 6 ++++++
1 file changed, 6 insertions(+)
(limited to 'OpenSim/Region/Framework/Interfaces/ISimulationDataStore.cs')
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
/// the region UUID
void RemoveRegionEnvironmentSettings(UUID regionUUID);
+ void SaveExtra(UUID regionID, string name, string val);
+
+ void RemoveExtra(UUID regionID, string name);
+
+ Dictionary GetExtra(UUID regionID);
+
void Shutdown();
}
}
--
cgit v1.1