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/XmlConfiguration.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/Configuration/XML/XmlConfiguration.cs (renamed from OpenSim/Framework/General/Configuration/XmlConfiguration.cs) | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/OpenSim/Framework/General/Configuration/XmlConfiguration.cs b/OpenSim/Framework/Configuration/XML/XmlConfiguration.cs index e1f3816..e56c657 100644 --- a/OpenSim/Framework/General/Configuration/XmlConfiguration.cs +++ b/OpenSim/Framework/Configuration/XML/XmlConfiguration.cs | |||
@@ -30,6 +30,7 @@ using System.IO; | |||
30 | using System.Xml; | 30 | using System.Xml; |
31 | 31 | ||
32 | using OpenSim.Framework.Interfaces; | 32 | using OpenSim.Framework.Interfaces; |
33 | using OpenSim.Framework.Configuration.Interfaces; | ||
33 | 34 | ||
34 | namespace OpenSim.Framework.Configuration | 35 | namespace OpenSim.Framework.Configuration |
35 | { | 36 | { |
@@ -41,9 +42,9 @@ namespace OpenSim.Framework.Configuration | |||
41 | private string fileName; | 42 | private string fileName; |
42 | private bool createdFile = false; | 43 | private bool createdFile = false; |
43 | 44 | ||
44 | public XmlConfiguration(string filename) | 45 | public void SetFileName(string file) |
45 | { | 46 | { |
46 | fileName = filename; | 47 | fileName = file; |
47 | } | 48 | } |
48 | 49 | ||
49 | public void LoadData() | 50 | public void LoadData() |