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

github.com/xamarin/macdoc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'AppleDocMergeWindow.cs')
-rw-r--r--AppleDocMergeWindow.cs28
1 files changed, 28 insertions, 0 deletions
diff --git a/AppleDocMergeWindow.cs b/AppleDocMergeWindow.cs
new file mode 100644
index 0000000..c4f4d95
--- /dev/null
+++ b/AppleDocMergeWindow.cs
@@ -0,0 +1,28 @@
+
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using MonoMac.Foundation;
+using MonoMac.AppKit;
+
+namespace macdoc
+{
+ public partial class AppleDocMergeWindow : MonoMac.AppKit.NSWindow
+ {
+ public AppleDocMergeWindow (IntPtr handle) : base (handle)
+ {
+ Initialize ();
+ }
+
+ [Export ("initWithCoder:")]
+ public AppleDocMergeWindow (NSCoder coder) : base (coder)
+ {
+ Initialize ();
+ }
+
+ void Initialize ()
+ {
+ }
+ }
+}
+