From 243e2859481487a4e1c0cf1a8a293c6d07e31762 Mon Sep 17 00:00:00 2001 From: Chris Cameron Date: Fri, 24 May 2019 09:55:33 -0400 Subject: [PATCH] feat: Added empty, placeholder interface for ICD Attributes --- CHANGELOG.md | 3 +++ ICD.Common.Utils/Attributes/AbstractIcdAttribute.cs | 2 +- ICD.Common.Utils/Attributes/IIcdAttribute.cs | 6 ++++++ ICD.Common.Utils/ICD.Common.Utils_SimplSharp.csproj | 1 + 4 files changed, 11 insertions(+), 1 deletion(-) create mode 100644 ICD.Common.Utils/Attributes/IIcdAttribute.cs diff --git a/CHANGELOG.md b/CHANGELOG.md index 5b8fae7..a0b3138 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. ## [Unreleased] +### Added + - Added empty, placeholder interface for ICD Attributes + ## [8.3.2] - 2019-05-02 ### Changed - Fixed PriorityQueue IndexOutOfRange exception when an inner queue becomes depleted diff --git a/ICD.Common.Utils/Attributes/AbstractIcdAttribute.cs b/ICD.Common.Utils/Attributes/AbstractIcdAttribute.cs index 51ab59a..e1cf5fa 100644 --- a/ICD.Common.Utils/Attributes/AbstractIcdAttribute.cs +++ b/ICD.Common.Utils/Attributes/AbstractIcdAttribute.cs @@ -5,7 +5,7 @@ namespace ICD.Common.Utils.Attributes /// /// AbstractIcdAttribute is the base class for all ICD attributes. /// - public abstract class AbstractIcdAttribute : Attribute + public abstract class AbstractIcdAttribute : Attribute, IIcdAttribute { } } diff --git a/ICD.Common.Utils/Attributes/IIcdAttribute.cs b/ICD.Common.Utils/Attributes/IIcdAttribute.cs new file mode 100644 index 0000000..ec9f029 --- /dev/null +++ b/ICD.Common.Utils/Attributes/IIcdAttribute.cs @@ -0,0 +1,6 @@ +namespace ICD.Common.Utils.Attributes +{ + public interface IIcdAttribute + { + } +} diff --git a/ICD.Common.Utils/ICD.Common.Utils_SimplSharp.csproj b/ICD.Common.Utils/ICD.Common.Utils_SimplSharp.csproj index 103d153..34b530c 100644 --- a/ICD.Common.Utils/ICD.Common.Utils_SimplSharp.csproj +++ b/ICD.Common.Utils/ICD.Common.Utils_SimplSharp.csproj @@ -75,6 +75,7 @@ +