From 850eadf27f9d0046c4bca9186533f3eec08410b2 Mon Sep 17 00:00:00 2001 From: alcexhim Date: Tue, 29 Jul 2014 19:47:34 -0400 Subject: [PATCH] Added Endpoint (to be implemented in UE5) --- .../UniversalEditor.Core/Endpoint.cs | 25 +++++++++++++++++++ .../UniversalEditor.Core.csproj | 3 ++- 2 files changed, 27 insertions(+), 1 deletion(-) create mode 100644 CSharp/Libraries/UniversalEditor.Core/Endpoint.cs diff --git a/CSharp/Libraries/UniversalEditor.Core/Endpoint.cs b/CSharp/Libraries/UniversalEditor.Core/Endpoint.cs new file mode 100644 index 00000000..40532514 --- /dev/null +++ b/CSharp/Libraries/UniversalEditor.Core/Endpoint.cs @@ -0,0 +1,25 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; + +namespace UniversalEditor +{ + /// + /// Represents an endpoint (/ pair) that + /// defines how and where data is transferred. + /// + public class Endpoint + { + public class EndpointCollection + : System.Collections.ObjectModel.Collection + { + } + + private Accessor mvarAccessor = null; + public Accessor Accessor { get { return mvarAccessor; } set { mvarAccessor = value; } } + + private DataFormat mvarDataFormat = null; + public DataFormat DataFormat { get { return mvarDataFormat; } set { mvarDataFormat = value; } } + } +} diff --git a/CSharp/Libraries/UniversalEditor.Core/UniversalEditor.Core.csproj b/CSharp/Libraries/UniversalEditor.Core/UniversalEditor.Core.csproj index 07f50f05..96013d5a 100644 --- a/CSharp/Libraries/UniversalEditor.Core/UniversalEditor.Core.csproj +++ b/CSharp/Libraries/UniversalEditor.Core/UniversalEditor.Core.csproj @@ -1,4 +1,4 @@ - + Debug @@ -56,6 +56,7 @@ +