mirror of
https://github.com/ICDSystems/ICD.Common.Utils.git
synced 2026-02-16 13:15:07 +00:00
feat: Added empty, placeholder interface for ICD Attributes
This commit is contained in:
@@ -6,6 +6,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.
|
|||||||
|
|
||||||
## [Unreleased]
|
## [Unreleased]
|
||||||
|
|
||||||
|
### Added
|
||||||
|
- Added empty, placeholder interface for ICD Attributes
|
||||||
|
|
||||||
## [8.3.2] - 2019-05-02
|
## [8.3.2] - 2019-05-02
|
||||||
### Changed
|
### Changed
|
||||||
- Fixed PriorityQueue IndexOutOfRange exception when an inner queue becomes depleted
|
- Fixed PriorityQueue IndexOutOfRange exception when an inner queue becomes depleted
|
||||||
|
|||||||
@@ -5,7 +5,7 @@ namespace ICD.Common.Utils.Attributes
|
|||||||
/// <summary>
|
/// <summary>
|
||||||
/// AbstractIcdAttribute is the base class for all ICD attributes.
|
/// AbstractIcdAttribute is the base class for all ICD attributes.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public abstract class AbstractIcdAttribute : Attribute
|
public abstract class AbstractIcdAttribute : Attribute, IIcdAttribute
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
6
ICD.Common.Utils/Attributes/IIcdAttribute.cs
Normal file
6
ICD.Common.Utils/Attributes/IIcdAttribute.cs
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
namespace ICD.Common.Utils.Attributes
|
||||||
|
{
|
||||||
|
public interface IIcdAttribute
|
||||||
|
{
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -75,6 +75,7 @@
|
|||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<Compile Include="Attributes\AbstractIcdAttribute.cs" />
|
<Compile Include="Attributes\AbstractIcdAttribute.cs" />
|
||||||
|
<Compile Include="Attributes\IIcdAttribute.cs" />
|
||||||
<Compile Include="Attributes\RangeAttribute.cs" />
|
<Compile Include="Attributes\RangeAttribute.cs" />
|
||||||
<Compile Include="Collections\BiDictionary.cs" />
|
<Compile Include="Collections\BiDictionary.cs" />
|
||||||
<Compile Include="Collections\AsyncEventQueue.cs" />
|
<Compile Include="Collections\AsyncEventQueue.cs" />
|
||||||
|
|||||||
Reference in New Issue
Block a user