File: Core\CSharp\System\Windows\Input\TouchPointCollection.cs
Project: wpf\src\PresentationCore.csproj (PresentationCore)
//---------------------------------------------------------------------------
//
// Copyright (C) Microsoft Corporation.  All rights reserved.
//
//---------------------------------------------------------------------------
 
using System;
using System.Collections.ObjectModel;
 
namespace System.Windows.Input
{
    /// <summary>
    ///     Represents a collection of TouchPoints.
    /// </summary>
    public class TouchPointCollection : Collection<TouchPoint>
    {
    }
}