From c58a2633dee1f240f2f57017b11bb420bef6ee65 Mon Sep 17 00:00:00 2001 From: Neil Dorin Date: Thu, 7 Feb 2019 14:21:48 -0700 Subject: [PATCH] Added missing third constuctor to EventArgs classes for JsonToSimpl --- .../JsonToSimpl/EventArgs and Constants.cs | 22 +++++++++++++++++++ .../Properties/AssemblyInfo.cs | 2 +- 2 files changed, 23 insertions(+), 1 deletion(-) diff --git a/Pepperdash Core/Pepperdash Core/JsonToSimpl/EventArgs and Constants.cs b/Pepperdash Core/Pepperdash Core/JsonToSimpl/EventArgs and Constants.cs index 42ecf35..e6e13a5 100644 --- a/Pepperdash Core/Pepperdash Core/JsonToSimpl/EventArgs and Constants.cs +++ b/Pepperdash Core/Pepperdash Core/JsonToSimpl/EventArgs and Constants.cs @@ -57,6 +57,13 @@ namespace PepperDash.Core.JsonToSimpl State = state; Type = type; } + + public BoolChangeEventArgs(bool state, ushort type, ushort index) + { + State = state; + Type = type; + Index = index; + } } //**************************************************************************************************// @@ -75,6 +82,13 @@ namespace PepperDash.Core.JsonToSimpl IntValue = intValue; Type = type; } + + public UshrtChangeEventArgs(ushort intValue, ushort type, ushort index) + { + IntValue = intValue; + Type = type; + Index = index; + } } //**************************************************************************************************// @@ -93,5 +107,13 @@ namespace PepperDash.Core.JsonToSimpl StringValue = stringValue; Type = type; } + + public StringChangeEventArgs(string stringValue, ushort type, ushort index) + { + StringValue = stringValue; + Type = type; + Index = index; + } + } } \ No newline at end of file diff --git a/Pepperdash Core/Pepperdash Core/Properties/AssemblyInfo.cs b/Pepperdash Core/Pepperdash Core/Properties/AssemblyInfo.cs index f1c301a..8741790 100644 --- a/Pepperdash Core/Pepperdash Core/Properties/AssemblyInfo.cs +++ b/Pepperdash Core/Pepperdash Core/Properties/AssemblyInfo.cs @@ -4,4 +4,4 @@ [assembly: AssemblyCompany("")] [assembly: AssemblyProduct("Pepperdash_Core")] [assembly: AssemblyCopyright("Copyright © PepperDash 2016")] -[assembly: AssemblyVersion("1.0.11.*")] +[assembly: AssemblyVersion("1.0.12.*")]