Welcome to mirror list, hosted at ThFree Co, Russian Federation.

AppleDocMergeWindow.cs - github.com/xamarin/macdoc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 1aea668da4b2c52a49c09efbadfdef5d7bd1a0b5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
using System;
using System.Collections.Generic;
using System.Linq;
using Foundation;
using AppKit;

namespace macdoc
{
	public partial class AppleDocMergeWindow : AppKit.NSWindow
	{
		public AppleDocMergeWindow (IntPtr handle) : base (handle)
		{
			Initialize ();
		}

		void Initialize ()
		{
		}
	}
}