aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/Prebuild/src/Core/Nodes/ReferencePathNode.cs
diff options
context:
space:
mode:
authorlbsa712007-06-13 19:58:57 +0000
committerlbsa712007-06-13 19:58:57 +0000
commit69b3a8a9b84a0fb1918f728e27a92ab52128ae3c (patch)
tree4b34856cad308a93f23a8b593d1174b104c92b59 /Prebuild/src/Core/Nodes/ReferencePathNode.cs
parent* Applying danx0r's ODE patch (diff)
downloadopensim-SC_OLD-69b3a8a9b84a0fb1918f728e27a92ab52128ae3c.zip
opensim-SC_OLD-69b3a8a9b84a0fb1918f728e27a92ab52128ae3c.tar.gz
opensim-SC_OLD-69b3a8a9b84a0fb1918f728e27a92ab52128ae3c.tar.bz2
opensim-SC_OLD-69b3a8a9b84a0fb1918f728e27a92ab52128ae3c.tar.xz
* First attempt at fixing differing build files on different .net flavours.
* And, as always, some bin ignores
Diffstat (limited to '')
-rw-r--r--Prebuild/src/Core/Nodes/ReferencePathNode.cs14
1 files changed, 12 insertions, 2 deletions
diff --git a/Prebuild/src/Core/Nodes/ReferencePathNode.cs b/Prebuild/src/Core/Nodes/ReferencePathNode.cs
index 5d98dda..0563c1b 100644
--- a/Prebuild/src/Core/Nodes/ReferencePathNode.cs
+++ b/Prebuild/src/Core/Nodes/ReferencePathNode.cs
@@ -47,7 +47,7 @@ namespace Prebuild.Core.Nodes
47 /// 47 ///
48 /// </summary> 48 /// </summary>
49 [DataNode("ReferencePath")] 49 [DataNode("ReferencePath")]
50 public class ReferencePathNode : DataNode 50 public class ReferencePathNode : DataNode, IComparable
51 { 51 {
52 #region Fields 52 #region Fields
53 53
@@ -94,5 +94,15 @@ namespace Prebuild.Core.Nodes
94 } 94 }
95 95
96 #endregion 96 #endregion
97 } 97
98 #region IComparable Members
99
100 public int CompareTo(object obj)
101 {
102 ReferencePathNode that = (ReferencePathNode)obj;
103 return this.m_Path.CompareTo(that.m_Path);
104 }
105
106 #endregion
107 }
98} 108}