From fdc9ed89b4adaa7f23ca06613b2ee36c30895021 Mon Sep 17 00:00:00 2001 From: MW Date: Mon, 2 Apr 2007 15:48:01 +0000 Subject: OpenSim no longer uses OpenSim.Config.SimConfigDb4o, it now uses OpenSim.GenericConfig.Xml (or a class implementing IGenericConfig). --- OpenSim.Framework/IGenericConfig.cs | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 OpenSim.Framework/IGenericConfig.cs (limited to 'OpenSim.Framework/IGenericConfig.cs') diff --git a/OpenSim.Framework/IGenericConfig.cs b/OpenSim.Framework/IGenericConfig.cs new file mode 100644 index 0000000..a853fe4 --- /dev/null +++ b/OpenSim.Framework/IGenericConfig.cs @@ -0,0 +1,15 @@ +using System; +using System.Collections.Generic; +using System.Text; + +namespace OpenSim.Framework.Interfaces +{ + public interface IGenericConfig + { + void LoadData(); + string GetAttribute(string attributeName); + bool SetAttribute(string attributeName, string attributeValue); + void Commit(); + void Close(); + } +} -- cgit v1.1