aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Server.Mac/MainWindow.cs
diff options
context:
space:
mode:
authorLuke <luke.pulverenti@gmail.com>2014-11-21 12:08:50 -0500
committerLuke <luke.pulverenti@gmail.com>2014-11-21 12:08:50 -0500
commit4ef10753df86307ce01c40703c36e56585e1249c (patch)
treedb0d7aa7719f70a08c853e871e45ae925f14a46a /MediaBrowser.Server.Mac/MainWindow.cs
parent27088b7bacccf9a259459e871320dc5de4d39ac2 (diff)
add server.mac project
Diffstat (limited to 'MediaBrowser.Server.Mac/MainWindow.cs')
-rw-r--r--MediaBrowser.Server.Mac/MainWindow.cs35
1 files changed, 35 insertions, 0 deletions
diff --git a/MediaBrowser.Server.Mac/MainWindow.cs b/MediaBrowser.Server.Mac/MainWindow.cs
new file mode 100644
index 000000000..c32ba36d7
--- /dev/null
+++ b/MediaBrowser.Server.Mac/MainWindow.cs
@@ -0,0 +1,35 @@
+
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using MonoMac.Foundation;
+using MonoMac.AppKit;
+
+namespace MediaBrowser.Server.Mac
+{
+ public partial class MainWindow : MonoMac.AppKit.NSWindow
+ {
+ #region Constructors
+
+ // Called when created from unmanaged code
+ public MainWindow (IntPtr handle) : base (handle)
+ {
+ Initialize ();
+ }
+
+ // Called when created directly from a XIB file
+ [Export ("initWithCoder:")]
+ public MainWindow (NSCoder coder) : base (coder)
+ {
+ Initialize ();
+ }
+
+ // Shared initialization code
+ void Initialize ()
+ {
+ }
+
+ #endregion
+ }
+}
+