diff options
author | Sean Dague | 2007-07-30 20:11:40 +0000 |
---|---|---|
committer | Sean Dague | 2007-07-30 20:11:40 +0000 |
commit | 74bb5282a09ec095a7ff810c62f79cc64e187686 (patch) | |
tree | e0a9b703bfcbbab59b04351dd71508fa913e741a /OpenSim/Framework/General/Configuration/ConfigurationOption.cs | |
parent | added OnDisconnectUser event to required classes (diff) | |
download | opensim-SC-74bb5282a09ec095a7ff810c62f79cc64e187686.zip opensim-SC-74bb5282a09ec095a7ff810c62f79cc64e187686.tar.gz opensim-SC-74bb5282a09ec095a7ff810c62f79cc64e187686.tar.bz2 opensim-SC-74bb5282a09ec095a7ff810c62f79cc64e187686.tar.xz |
mass update of files to have native line endings
Diffstat (limited to 'OpenSim/Framework/General/Configuration/ConfigurationOption.cs')
-rw-r--r-- | OpenSim/Framework/General/Configuration/ConfigurationOption.cs | 72 |
1 files changed, 36 insertions, 36 deletions
diff --git a/OpenSim/Framework/General/Configuration/ConfigurationOption.cs b/OpenSim/Framework/General/Configuration/ConfigurationOption.cs index 38f60a0..c94ba4c 100644 --- a/OpenSim/Framework/General/Configuration/ConfigurationOption.cs +++ b/OpenSim/Framework/General/Configuration/ConfigurationOption.cs | |||
@@ -1,36 +1,36 @@ | |||
1 | using System; | 1 | using System; |
2 | using System.Collections.Generic; | 2 | using System.Collections.Generic; |
3 | using System.Text; | 3 | using System.Text; |
4 | 4 | ||
5 | namespace OpenSim.Framework.Configuration | 5 | namespace OpenSim.Framework.Configuration |
6 | { | 6 | { |
7 | public class ConfigurationOption | 7 | public class ConfigurationOption |
8 | { | 8 | { |
9 | public enum ConfigurationTypes | 9 | public enum ConfigurationTypes |
10 | { | 10 | { |
11 | TYPE_STRING, | 11 | TYPE_STRING, |
12 | TYPE_STRING_NOT_EMPTY, | 12 | TYPE_STRING_NOT_EMPTY, |
13 | TYPE_UINT16, | 13 | TYPE_UINT16, |
14 | TYPE_UINT32, | 14 | TYPE_UINT32, |
15 | TYPE_UINT64, | 15 | TYPE_UINT64, |
16 | TYPE_INT16, | 16 | TYPE_INT16, |
17 | TYPE_INT32, | 17 | TYPE_INT32, |
18 | TYPE_INT64, | 18 | TYPE_INT64, |
19 | TYPE_IP_ADDRESS, | 19 | TYPE_IP_ADDRESS, |
20 | TYPE_CHARACTER, | 20 | TYPE_CHARACTER, |
21 | TYPE_BOOLEAN, | 21 | TYPE_BOOLEAN, |
22 | TYPE_BYTE, | 22 | TYPE_BYTE, |
23 | TYPE_LLUUID, | 23 | TYPE_LLUUID, |
24 | TYPE_LLVECTOR3, | 24 | TYPE_LLVECTOR3, |
25 | TYPE_FLOAT, | 25 | TYPE_FLOAT, |
26 | TYPE_DOUBLE | 26 | TYPE_DOUBLE |
27 | }; | 27 | }; |
28 | 28 | ||
29 | public string configurationKey = ""; | 29 | public string configurationKey = ""; |
30 | public string configurationQuestion = ""; | 30 | public string configurationQuestion = ""; |
31 | public string configurationDefault = ""; | 31 | public string configurationDefault = ""; |
32 | 32 | ||
33 | public ConfigurationTypes configurationType = ConfigurationTypes.TYPE_STRING; | 33 | public ConfigurationTypes configurationType = ConfigurationTypes.TYPE_STRING; |
34 | public bool configurationUseDefaultNoPrompt = false; | 34 | public bool configurationUseDefaultNoPrompt = false; |
35 | } | 35 | } |
36 | } | 36 | } |