diff options
author | MW | 2008-11-05 20:14:52 +0000 |
---|---|---|
committer | MW | 2008-11-05 20:14:52 +0000 |
commit | 571b94f537cc1f431ed52e6a185863ae17357f30 (patch) | |
tree | ff5381abcf3237c7a9339a1b5e2904d88f75bfa1 /OpenSim/Framework | |
parent | * Zap the letters that accidentally crept in to the license in EventQueueThre... (diff) | |
download | opensim-SC-571b94f537cc1f431ed52e6a185863ae17357f30.zip opensim-SC-571b94f537cc1f431ed52e6a185863ae17357f30.tar.gz opensim-SC-571b94f537cc1f431ed52e6a185863ae17357f30.tar.bz2 opensim-SC-571b94f537cc1f431ed52e6a185863ae17357f30.tar.xz |
moved the initial loading/setting of the config settings to its own class, ConfigurationLoader. To make it easier to customise the loading of those settings and possible in the future move it to a plugin.
Diffstat (limited to 'OpenSim/Framework')
-rw-r--r-- | OpenSim/Framework/ConfigSettings.cs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/OpenSim/Framework/ConfigSettings.cs b/OpenSim/Framework/ConfigSettings.cs index 275ab69..3ff02f9 100644 --- a/OpenSim/Framework/ConfigSettings.cs +++ b/OpenSim/Framework/ConfigSettings.cs | |||
@@ -148,5 +148,13 @@ namespace OpenSim.Framework | |||
148 | get { return m_estateConnectionString; } | 148 | get { return m_estateConnectionString; } |
149 | set { m_estateConnectionString = value; } | 149 | set { m_estateConnectionString = value; } |
150 | } | 150 | } |
151 | |||
152 | protected bool m_dumpAssetsToFile; | ||
153 | |||
154 | public bool DumpAssetsToFile | ||
155 | { | ||
156 | get { return m_dumpAssetsToFile; } | ||
157 | set { m_dumpAssetsToFile = value; } | ||
158 | } | ||
151 | } | 159 | } |
152 | } | 160 | } |