aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Prebuild/src/Core/Nodes/ConfigurationNode.cs
diff options
context:
space:
mode:
authorlbsa712007-06-14 11:01:38 +0000
committerlbsa712007-06-14 11:01:38 +0000
commit3a20a7b5d1d3a70b203721f240f938fc221de732 (patch)
tree7a4a657d346aa47558d41b8e2ef4bfae98229885 /Prebuild/src/Core/Nodes/ConfigurationNode.cs
parentCommented out the Scene.Backup method for now as there isn't really anything ... (diff)
downloadopensim-SC_OLD-3a20a7b5d1d3a70b203721f240f938fc221de732.zip
opensim-SC_OLD-3a20a7b5d1d3a70b203721f240f938fc221de732.tar.gz
opensim-SC_OLD-3a20a7b5d1d3a70b203721f240f938fc221de732.tar.bz2
opensim-SC_OLD-3a20a7b5d1d3a70b203721f240f938fc221de732.tar.xz
* Applied Prebuild fixes to Sugilite
* Rebuilt project files * ignored some bins
Diffstat (limited to 'Prebuild/src/Core/Nodes/ConfigurationNode.cs')
-rw-r--r--Prebuild/src/Core/Nodes/ConfigurationNode.cs14
1 files changed, 12 insertions, 2 deletions
diff --git a/Prebuild/src/Core/Nodes/ConfigurationNode.cs b/Prebuild/src/Core/Nodes/ConfigurationNode.cs
index e1488a7..390794f 100644
--- a/Prebuild/src/Core/Nodes/ConfigurationNode.cs
+++ b/Prebuild/src/Core/Nodes/ConfigurationNode.cs
@@ -45,7 +45,7 @@ namespace Prebuild.Core.Nodes
45 /// 45 ///
46 /// </summary> 46 /// </summary>
47 [DataNode("Configuration")] 47 [DataNode("Configuration")]
48 public class ConfigurationNode : DataNode, ICloneable 48 public class ConfigurationNode : DataNode, ICloneable, IComparable
49 { 49 {
50 #region Fields 50 #region Fields
51 51
@@ -173,5 +173,15 @@ namespace Prebuild.Core.Nodes
173 } 173 }
174 174
175 #endregion 175 #endregion
176 } 176
177 #region IComparable Members
178
179 public int CompareTo(object obj)
180 {
181 ConfigurationNode that = (ConfigurationNode) obj;
182 return this.m_Name.CompareTo(that.m_Name);
183 }
184
185 #endregion
186 }
177} 187}