diff options
author | mingchen | 2007-07-20 17:08:01 +0000 |
---|---|---|
committer | mingchen | 2007-07-20 17:08:01 +0000 |
commit | 12bb7628d25508f9e4cbcb8356e5016c4b88e49b (patch) | |
tree | 29c6ef000a1073d2a55d739b6e9bcfe17dbe59a8 /OpenSim/Framework | |
parent | * Fixed an config issue (log not initialized in RegionInfo config) (diff) | |
download | opensim-SC_OLD-12bb7628d25508f9e4cbcb8356e5016c4b88e49b.zip opensim-SC_OLD-12bb7628d25508f9e4cbcb8356e5016c4b88e49b.tar.gz opensim-SC_OLD-12bb7628d25508f9e4cbcb8356e5016c4b88e49b.tar.bz2 opensim-SC_OLD-12bb7628d25508f9e4cbcb8356e5016c4b88e49b.tar.xz |
*Added ability to manually set the configuration plugin dll from ConfigurationMember
Diffstat (limited to 'OpenSim/Framework')
-rw-r--r-- | OpenSim/Framework/General/Configuration/ConfigurationMember.cs | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/OpenSim/Framework/General/Configuration/ConfigurationMember.cs b/OpenSim/Framework/General/Configuration/ConfigurationMember.cs index a0d019c..4a6e0cc 100644 --- a/OpenSim/Framework/General/Configuration/ConfigurationMember.cs +++ b/OpenSim/Framework/General/Configuration/ConfigurationMember.cs | |||
@@ -47,7 +47,11 @@ namespace OpenSim.Framework.Configuration | |||
47 | { | 47 | { |
48 | resultFunction = result; | 48 | resultFunction = result; |
49 | } | 49 | } |
50 | 50 | ||
51 | public void forceConfigurationPluginLibrary(string dll_filename) | ||
52 | { | ||
53 | configurationPlugin = this.LoadConfigDll(dll_filename); | ||
54 | } | ||
51 | public void addConfigurationOption(string configuration_key, ConfigurationOption.ConfigurationTypes configuration_type, string configuration_question, string configuration_default, bool use_default_no_prompt) | 55 | public void addConfigurationOption(string configuration_key, ConfigurationOption.ConfigurationTypes configuration_type, string configuration_question, string configuration_default, bool use_default_no_prompt) |
52 | { | 56 | { |
53 | ConfigurationOption configOption = new ConfigurationOption(); | 57 | ConfigurationOption configOption = new ConfigurationOption(); |