summaryrefslogtreecommitdiff
path: root/Xamarin.Forms.Platform.WinRT.Tablet/WindowsPlatform.cs
blob: ce7e5fd79f1697c4422637e9e897e25e7cc619a7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16

#if WINDOWS_UWP

namespace Xamarin.Forms.Platform.UWP
#else

namespace Xamarin.Forms.Platform.WinRT
#endif
{
	internal sealed class WindowsPlatform : Platform
	{
		public WindowsPlatform(Windows.UI.Xaml.Controls.Page page) : base(page)
		{
		}
	}
}