Moved RingMemoryStream class from the Collections namespace to the IO namespace
git-svn-id: file:///srv/devel/repo-conversion/nusu@133 d2e56fa2-650e-0410-a79f-9358c0239efd
This commit is contained in:
parent
f2280629b9
commit
1c317b3f66
|
@ -118,8 +118,8 @@
|
||||||
<Compile Include="Source\Collections\ReverseComparer.Test.cs">
|
<Compile Include="Source\Collections\ReverseComparer.Test.cs">
|
||||||
<DependentUpon>ReverseComparer.cs</DependentUpon>
|
<DependentUpon>ReverseComparer.cs</DependentUpon>
|
||||||
</Compile>
|
</Compile>
|
||||||
<Compile Include="Source\Collections\RingMemoryStream.cs" />
|
<Compile Include="Source\IO\RingMemoryStream.cs" />
|
||||||
<Compile Include="Source\Collections\RingMemoryStream.Test.cs">
|
<Compile Include="Source\IO\RingMemoryStream.Test.cs">
|
||||||
<DependentUpon>RingMemoryStream.cs</DependentUpon>
|
<DependentUpon>RingMemoryStream.cs</DependentUpon>
|
||||||
</Compile>
|
</Compile>
|
||||||
<Compile Include="Source\Collections\TransformingReadOnlyCollection.cs" />
|
<Compile Include="Source\Collections\TransformingReadOnlyCollection.cs" />
|
||||||
|
|
|
@ -100,8 +100,8 @@
|
||||||
<Compile Include="Source\Collections\ReverseComparer.Test.cs">
|
<Compile Include="Source\Collections\ReverseComparer.Test.cs">
|
||||||
<DependentUpon>ReverseComparer.cs</DependentUpon>
|
<DependentUpon>ReverseComparer.cs</DependentUpon>
|
||||||
</Compile>
|
</Compile>
|
||||||
<Compile Include="Source\Collections\RingMemoryStream.cs" />
|
<Compile Include="Source\IO\RingMemoryStream.cs" />
|
||||||
<Compile Include="Source\Collections\RingMemoryStream.Test.cs">
|
<Compile Include="Source\IO\RingMemoryStream.Test.cs">
|
||||||
<DependentUpon>RingMemoryStream.cs</DependentUpon>
|
<DependentUpon>RingMemoryStream.cs</DependentUpon>
|
||||||
</Compile>
|
</Compile>
|
||||||
<Compile Include="Source\Collections\TransformingReadOnlyCollection.cs" />
|
<Compile Include="Source\Collections\TransformingReadOnlyCollection.cs" />
|
||||||
|
|
|
@ -25,7 +25,7 @@ using System.IO;
|
||||||
|
|
||||||
using NUnit.Framework;
|
using NUnit.Framework;
|
||||||
|
|
||||||
namespace Nuclex.Support.Collections {
|
namespace Nuclex.Support.IO {
|
||||||
|
|
||||||
/// <summary>Unit Test for the ring buffer class</summary>
|
/// <summary>Unit Test for the ring buffer class</summary>
|
||||||
[TestFixture]
|
[TestFixture]
|
||||||
|
@ -312,6 +312,6 @@ namespace Nuclex.Support.Collections {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
} // namespace Nuclex.Support.Collections
|
} // namespace Nuclex.Support.IO
|
||||||
|
|
||||||
#endif // UNITTEST
|
#endif // UNITTEST
|
|
@ -21,7 +21,7 @@ License along with this library
|
||||||
using System;
|
using System;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
|
|
||||||
namespace Nuclex.Support.Collections {
|
namespace Nuclex.Support.IO {
|
||||||
|
|
||||||
/// <summary>Specialized memory stream for ring buffers</summary>
|
/// <summary>Specialized memory stream for ring buffers</summary>
|
||||||
/// <remarks>
|
/// <remarks>
|
||||||
|
@ -253,4 +253,4 @@ namespace Nuclex.Support.Collections {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
} // namespace Nuclex.Support.Collections
|
} // namespace Nuclex.Support.IO
|
|
@ -75,7 +75,7 @@ namespace Nuclex.Support {
|
||||||
}
|
}
|
||||||
|
|
||||||
// Now that we're in the common root folder, enter the folders that
|
// Now that we're in the common root folder, enter the folders that
|
||||||
// the absolute path has in addition to the
|
// the absolute target path has in addition to the root folder.
|
||||||
for(int index = lastCommonRoot + 1; index < absoluteDirectories.Length; index++) {
|
for(int index = lastCommonRoot + 1; index < absoluteDirectories.Length; index++) {
|
||||||
if(relativePath.Length > 0) // We don't want the path to start with a slash
|
if(relativePath.Length > 0) // We don't want the path to start with a slash
|
||||||
relativePath.Append(Path.DirectorySeparatorChar);
|
relativePath.Append(Path.DirectorySeparatorChar);
|
||||||
|
|
Loading…
Reference in New Issue
Block a user