16 lines
367 B
C#
16 lines
367 B
C#
|
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();
|
||
|
}
|
||
|
}
|