aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/SideChains/RealTimeGraphX/Controllers/GraphController.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Software/Visual_Studio/SideChains/RealTimeGraphX/Controllers/GraphController.cs')
-rw-r--r--Software/Visual_Studio/SideChains/RealTimeGraphX/Controllers/GraphController.cs20
1 files changed, 20 insertions, 0 deletions
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
+{
+ /// <summary>
+ /// A simple implementation of <see cref="GraphControllerBase{XDataPoint, YDataPoint}"/>.
+ /// </summary>
+ /// <typeparam name="TDataSeries">The type of the graph data series.</typeparam>
+ /// <typeparam name="XDataPoint">The type of the x-axis data point.</typeparam>
+ /// <typeparam name="YDataPoint">The type of the y-axis data point.</typeparam>
+ /// <seealso cref="RealTimeGraphX.GraphControllerBase{XDataPoint, YDataPoint}" />
+ public class GraphController<TDataSeries, XDataPoint, YDataPoint> : GraphControllerBase<TDataSeries, XDataPoint, YDataPoint> where XDataPoint : GraphDataPointBase where YDataPoint : GraphDataPointBase where TDataSeries : IGraphDataSeries
+ {
+
+ }
+}