Correcting namespaces

This commit is contained in:
Chris Cameron
2017-08-29 10:33:19 -04:00
parent ce73578609
commit c812cf47ce
15 changed files with 15 additions and 15 deletions

View File

@@ -1,4 +1,4 @@
namespace ICD.Common.EventArguments
namespace ICD.Common.Utils.EventArguments
{
public sealed class BoolEventArgs : GenericEventArgs<bool>
{

View File

@@ -1,6 +1,6 @@
using ICD.Common.Properties;
namespace ICD.Common.EventArguments
namespace ICD.Common.Utils.EventArguments
{
[PublicAPI]
public sealed class CharEventArgs : GenericEventArgs<char>

View File

@@ -1,6 +1,6 @@
using System;
namespace ICD.Common.EventArguments
namespace ICD.Common.Utils.EventArguments
{
public sealed class DateTimeEventArgs : GenericEventArgs<DateTime>
{

View File

@@ -1,4 +1,4 @@
namespace ICD.Common.EventArguments
namespace ICD.Common.Utils.EventArguments
{
public sealed class FloatEventArgs : GenericEventArgs<float>
{

View File

@@ -1,6 +1,6 @@
using System;
namespace ICD.Common.EventArguments
namespace ICD.Common.Utils.EventArguments
{
public abstract class GenericEventArgs<T> : EventArgs
{

View File

@@ -1,4 +1,4 @@
namespace ICD.Common.EventArguments
namespace ICD.Common.Utils.EventArguments
{
public sealed class IntEventArgs : GenericEventArgs<int>
{

View File

@@ -1,4 +1,4 @@
namespace ICD.Common.EventArguments
namespace ICD.Common.Utils.EventArguments
{
public sealed class StringEventArgs : GenericEventArgs<string>
{

View File

@@ -2,7 +2,7 @@
using System.Collections.Generic;
using ICD.Common.Utils;
namespace ICD.Common.EventArguments
namespace ICD.Common.Utils.EventArguments
{
public sealed class TcpReceiveEventArgs : EventArgs
{

View File

@@ -1,6 +1,6 @@
using ICD.Common.Properties;
namespace ICD.Common.EventArguments
namespace ICD.Common.Utils.EventArguments
{
[PublicAPI]
public sealed class UShortEventArgs : GenericEventArgs<ushort>

View File

@@ -1,7 +1,7 @@
using System;
using ICD.Common.Properties;
namespace ICD.Common.EventArguments
namespace ICD.Common.Utils.EventArguments
{
public sealed class XmlRecursionEventArgs : EventArgs
{

View File

@@ -1,4 +1,4 @@
using ICD.Common.EventArguments;
using ICD.Common.Utils.EventArguments;
namespace ICD.Common.Services.Logging
{

View File

@@ -1,4 +1,4 @@
using ICD.Common.EventArguments;
using ICD.Common.Utils.EventArguments;
namespace ICD.Common.Services.Logging
{

View File

@@ -1,5 +1,5 @@
using System;
using ICD.Common.EventArguments;
using ICD.Common.Utils.EventArguments;
using ICD.Common.Utils.Extensions;
namespace ICD.Common.Utils.Timers

View File

@@ -1,7 +1,7 @@
using System;
using System.Collections.Generic;
using System.Linq;
using ICD.Common.EventArguments;
using ICD.Common.Utils.EventArguments;
using ICD.Common.Properties;
#if SIMPLSHARP
using Crestron.SimplSharp.CrestronXml;

View File

@@ -2,7 +2,7 @@
using System.Collections.Generic;
using System.Linq;
using System.Text;
using ICD.Common.EventArguments;
using ICD.Common.Utils.EventArguments;
using ICD.Common.Properties;
using ICD.Common.Utils.Extensions;
using ICD.Common.Utils.IO;