From 42f8bc09bb0f11241c12300d0da36b48e6259d99 Mon Sep 17 00:00:00 2001 From: Michael Smith Date: Fri, 18 Mar 2016 00:02:09 -0700 Subject: [PATCH] Shifted StatementBuilder to Utility --- OSCADSharp/OSCADSharp/Cylinder.cs | 1 + OSCADSharp/OSCADSharp/OSCADSharp.csproj | 2 +- OSCADSharp/OSCADSharp/Sphere.cs | 1 + OSCADSharp/OSCADSharp/{ => Utility}/StatementBuilder.cs | 2 +- 4 files changed, 4 insertions(+), 2 deletions(-) rename OSCADSharp/OSCADSharp/{ => Utility}/StatementBuilder.cs (98%) diff --git a/OSCADSharp/OSCADSharp/Cylinder.cs b/OSCADSharp/OSCADSharp/Cylinder.cs index 53e4f1c..f93ca3f 100644 --- a/OSCADSharp/OSCADSharp/Cylinder.cs +++ b/OSCADSharp/OSCADSharp/Cylinder.cs @@ -1,5 +1,6 @@ using OSCADSharp.DataBinding; using OSCADSharp.Spatial; +using OSCADSharp.Utility; using System; using System.Collections.Generic; using System.Linq; diff --git a/OSCADSharp/OSCADSharp/OSCADSharp.csproj b/OSCADSharp/OSCADSharp/OSCADSharp.csproj index 31ba4c1..3a0575d 100644 --- a/OSCADSharp/OSCADSharp/OSCADSharp.csproj +++ b/OSCADSharp/OSCADSharp/OSCADSharp.csproj @@ -56,7 +56,7 @@ - + diff --git a/OSCADSharp/OSCADSharp/Sphere.cs b/OSCADSharp/OSCADSharp/Sphere.cs index aec64fb..bf711c3 100644 --- a/OSCADSharp/OSCADSharp/Sphere.cs +++ b/OSCADSharp/OSCADSharp/Sphere.cs @@ -7,6 +7,7 @@ using System.Collections.Concurrent; using System.Reflection; using OSCADSharp.Spatial; using OSCADSharp.DataBinding; +using OSCADSharp.Utility; namespace OSCADSharp { diff --git a/OSCADSharp/OSCADSharp/StatementBuilder.cs b/OSCADSharp/OSCADSharp/Utility/StatementBuilder.cs similarity index 98% rename from OSCADSharp/OSCADSharp/StatementBuilder.cs rename to OSCADSharp/OSCADSharp/Utility/StatementBuilder.cs index 591619e..76d45b9 100644 --- a/OSCADSharp/OSCADSharp/StatementBuilder.cs +++ b/OSCADSharp/OSCADSharp/Utility/StatementBuilder.cs @@ -5,7 +5,7 @@ using System.Linq; using System.Text; using System.Threading.Tasks; -namespace OSCADSharp +namespace OSCADSharp.Utility { /// /// Extends the capabilities of StringBuilder with domain-specific behavior