diff options
author | mingchen | 2007-07-19 20:39:33 +0000 |
---|---|---|
committer | mingchen | 2007-07-19 20:39:33 +0000 |
commit | ed69e84874b710c2cc3b8af94dd00cf725cf6d03 (patch) | |
tree | 0da9c55d9a1ddc796b66ba249fa58b093294828f /OpenSim/Framework/General/Configuration/Interfaces/IGenericConfig.cs | |
parent | Some work on Inventory (not yet finished or enabled) (diff) | |
download | opensim-SC-ed69e84874b710c2cc3b8af94dd00cf725cf6d03.zip opensim-SC-ed69e84874b710c2cc3b8af94dd00cf725cf6d03.tar.gz opensim-SC-ed69e84874b710c2cc3b8af94dd00cf725cf6d03.tar.bz2 opensim-SC-ed69e84874b710c2cc3b8af94dd00cf725cf6d03.tar.xz |
*Moved XmlConfiguration to its own project
*Made it possible to load a configuration interface by DLL
*Deleted the 1024 config files until they are updated
Diffstat (limited to '')
-rw-r--r-- | OpenSim/Framework/General/Configuration/Interfaces/IGenericConfig.cs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/OpenSim/Framework/General/Configuration/Interfaces/IGenericConfig.cs b/OpenSim/Framework/General/Configuration/Interfaces/IGenericConfig.cs index 2c379dd..5a5a20e 100644 --- a/OpenSim/Framework/General/Configuration/Interfaces/IGenericConfig.cs +++ b/OpenSim/Framework/General/Configuration/Interfaces/IGenericConfig.cs | |||
@@ -25,10 +25,11 @@ | |||
25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 25 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
26 | * | 26 | * |
27 | */ | 27 | */ |
28 | namespace OpenSim.Framework.Interfaces | 28 | namespace OpenSim.Framework.Configuration.Interfaces |
29 | { | 29 | { |
30 | public interface IGenericConfig | 30 | public interface IGenericConfig |
31 | { | 31 | { |
32 | void SetFileName(string fileName); | ||
32 | void LoadData(); | 33 | void LoadData(); |
33 | string GetAttribute(string attributeName); | 34 | string GetAttribute(string attributeName); |
34 | bool SetAttribute(string attributeName, string attributeValue); | 35 | bool SetAttribute(string attributeName, string attributeValue); |