Skip to content

Commit 3d4210d

Browse files
committed
absdtract classes move to abstraction folder
1 parent 1c9fa6d commit 3d4210d

File tree

13 files changed

+17
-6
lines changed

13 files changed

+17
-6
lines changed

samples/PolylineAlgorithm.NetTopologySuite.Sample/NetTopologyPolylineDecoder.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
namespace PolylineAlgorithm.NetTopologySuite.Sample;
77

88
using global::NetTopologySuite.Geometries;
9-
using PolylineAlgorithm;
9+
using PolylineAlgorithm.Abstraction;
1010
using System;
1111

1212
internal sealed class NetTopologyPolylineDecoder : AbstractPolylineDecoder<string, Point> {

samples/PolylineAlgorithm.NetTopologySuite.Sample/NetTopologyPolylineEncoder.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
namespace PolylineAlgorithm.NetTopologySuite.Sample;
77

88
using global::NetTopologySuite.Geometries;
9-
using PolylineAlgorithm;
9+
using PolylineAlgorithm.Abstraction;
1010

1111
internal sealed class NetTopologyPolylineEncoder : AbstractPolylineEncoder<Point, string> {
1212

src/PolylineAlgorithm/AbstractPolylineDecoder.cs renamed to src/PolylineAlgorithm/Abstraction/AbstractPolylineDecoder.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,14 @@
33
// Licensed under the MIT License. See LICENSE file in the project root for full license information.
44
//
55

6-
namespace PolylineAlgorithm;
6+
namespace PolylineAlgorithm.Abstraction;
77

88
using Microsoft.Extensions.Logging;
99
using PolylineAlgorithm.Internal.Logging;
1010
using PolylineAlgorithm.Internal;
1111
using PolylineAlgorithm.Properties;
1212
using System;
13+
using PolylineAlgorithm;
1314

1415
/// <summary>
1516
/// Decodes encoded polyline strings into sequences of geographic coordinates.

src/PolylineAlgorithm/AbstractPolylineEncoder.cs renamed to src/PolylineAlgorithm/Abstraction/AbstractPolylineEncoder.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// Licensed under the MIT License. See LICENSE file in the project root for full license information.
44
//
55

6-
namespace PolylineAlgorithm;
6+
namespace PolylineAlgorithm.Abstraction;
77

88
using Microsoft.Extensions.Logging;
99
using PolylineAlgorithm.Internal.Logging;
@@ -14,6 +14,7 @@ namespace PolylineAlgorithm;
1414
using System.Collections.Generic;
1515
using System.Diagnostics;
1616
using System.Runtime.CompilerServices;
17+
using PolylineAlgorithm;
1718

1819
/// <summary>
1920
/// Provides functionality to encode a collection of geographic coordinates into an encoded polyline string.

src/PolylineAlgorithm/IPolylineDecoder.cs renamed to src/PolylineAlgorithm/Abstraction/IPolylineDecoder.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// Licensed under the MIT License. See LICENSE file in the project root for full license information.
44
//
55

6-
namespace PolylineAlgorithm;
6+
namespace PolylineAlgorithm.Abstraction;
77

88
using System.Collections.Generic;
99

src/PolylineAlgorithm/IPolylineEncoder.cs renamed to src/PolylineAlgorithm/Abstraction/IPolylineEncoder.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// Licensed under the MIT License. See LICENSE file in the project root for full license information.
44
//
55

6-
namespace PolylineAlgorithm;
6+
namespace PolylineAlgorithm.Abstraction;
77

88
using System.Collections.Generic;
99

src/PolylineAlgorithm/Extensions/PolylineDecoderExtensions.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
namespace PolylineAlgorithm.Extensions;
77

88
using PolylineAlgorithm;
9+
using PolylineAlgorithm.Abstraction;
910
using System;
1011
using System.Collections.Generic;
1112
using System.Diagnostics;

src/PolylineAlgorithm/Extensions/PolylineEncoderExtensions.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
namespace PolylineAlgorithm.Extensions;
77

88
using PolylineAlgorithm;
9+
using PolylineAlgorithm.Abstraction;
910
using System;
1011
using System.Collections.Generic;
1112
using System.Diagnostics;

src/PolylineAlgorithm/PolylineDecoder.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44
//
55

66
namespace PolylineAlgorithm;
7+
8+
using PolylineAlgorithm.Abstraction;
79
using System.Runtime.CompilerServices;
810

911
/// <inheritdoc cref="AbstractPolylineDecoder{TPolyline, TCoordinate}" />

src/PolylineAlgorithm/PolylineEncoder.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44
//
55

66
namespace PolylineAlgorithm;
7+
8+
using PolylineAlgorithm.Abstraction;
79
using System.Runtime.CompilerServices;
810

911
/// <inheritdoc cref="AbstractPolylineEncoder{TCoordinate, TPolyline}" />

0 commit comments

Comments
 (0)