using System;

// This file is part of the ANX.Framework created by the
// "ANX.Framework developer group" and released under the Ms-PL license.
// For details see: http://anxframework.codeplex.com/license

namespace ANX.Framework.Input.Touch
{
	public static class TouchPanel
	{
		public static GestureType EnabledGestures
		{
			get
			{
				throw new NotImplementedException();
			}
			set
			{
				throw new NotImplementedException();
			}
		}

		public static bool IsGestureAvailable
		{
			get
			{
				throw new NotImplementedException();
			}
		}

		public static IntPtr WindowHandle
		{
			get
			{
				throw new NotImplementedException();
			}
			set
			{
				throw new NotImplementedException();
			}
		}

		public static DisplayOrientation DisplayOrientation
		{
			get
			{
				throw new NotImplementedException();
			}
			set
			{
				throw new NotImplementedException();
			}
		}

		public static int DisplayWidth
		{
			get
			{
				throw new NotImplementedException();
			}
			set
			{
				throw new NotImplementedException();
			}
		}

		public static int DisplayHeight
		{
			get
			{
				throw new NotImplementedException();
			}
			set
			{
				throw new NotImplementedException();
			}
		}

		public static TouchPanelCapabilities GetCapabilities()
		{
			throw new NotImplementedException();
		}

		public static GestureSample ReadGesture()
		{
			throw new NotImplementedException();
		}

		public static TouchCollection GetState()
		{
			throw new NotImplementedException();
		}
	}
}