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 @@ +