From 79eb19cbd10785a7dbc972bc0b26817932237419 Mon Sep 17 00:00:00 2001 From: Roy Ben-Shabat Date: Wed, 10 Oct 2018 16:55:44 +0300 Subject: Sign-out works ! Fixed issue where color conversion was busy while not in research module but research module in job view. Added new RealTimeGraphX ! --- .../RealTimeGraphX/Controllers/GraphController.cs | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 Software/Visual_Studio/SideChains/RealTimeGraphX/Controllers/GraphController.cs (limited to 'Software/Visual_Studio/SideChains/RealTimeGraphX/Controllers/GraphController.cs') diff --git a/Software/Visual_Studio/SideChains/RealTimeGraphX/Controllers/GraphController.cs b/Software/Visual_Studio/SideChains/RealTimeGraphX/Controllers/GraphController.cs new file mode 100644 index 000000000..8de2b4c23 --- /dev/null +++ b/Software/Visual_Studio/SideChains/RealTimeGraphX/Controllers/GraphController.cs @@ -0,0 +1,20 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace RealTimeGraphX.Controllers +{ + /// + /// A simple implementation of . + /// + /// The type of the graph data series. + /// The type of the x-axis data point. + /// The type of the y-axis data point. + /// + public class GraphController : GraphControllerBase where XDataPoint : GraphDataPointBase where YDataPoint : GraphDataPointBase where TDataSeries : IGraphDataSeries + { + + } +} -- cgit v1.3.1