using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Tango.RemoteDesktop.Comparers;
using Tango.RemoteDesktop.Frames;
namespace Tango.RemoteDesktop.Engines
{
///
/// Represents a raster screen capture engine.
/// The difference delivered by the event is of type .
///
///
public class RasterScreenCaptureEngine : ScreenCaptureEngine
{
///
/// Initializes a new instance of the class.
///
public RasterScreenCaptureEngine() : base(new RasterBitmapComparer())
{
}
}
}