using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Media;
namespace RealTimeGraphX.WPF
{
///
/// Represents a WPF graph controller.
///
/// The type of the x data point.
/// The type of the y data point.
///
public class WpfGraphController : GraphController
where TXDataPoint : GraphDataPoint
where TYDataPoint : GraphDataPoint
{
}
}