OpenSimMirror/Common/OpenSim.Framework/Interfaces/Config/IGenericConfig.cs

16 lines
367 B
C#
Raw Normal View History

2007-05-26 13:40:19 +00:00
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();
}
}