summaryrefslogtreecommitdiffstatshomepage
path: root/src/osd/modules/debugger/osx/debugosxwatchpointsview.m
diff options
context:
space:
mode:
Diffstat (limited to 'src/osd/modules/debugger/osx/debugosxwatchpointsview.m')
-rw-r--r--src/osd/modules/debugger/osx/debugosxwatchpointsview.m30
1 files changed, 30 insertions, 0 deletions
diff --git a/src/osd/modules/debugger/osx/debugosxwatchpointsview.m b/src/osd/modules/debugger/osx/debugosxwatchpointsview.m
new file mode 100644
index 00000000000..a023351eb77
--- /dev/null
+++ b/src/osd/modules/debugger/osx/debugosxwatchpointsview.m
@@ -0,0 +1,30 @@
+// license:BSD-3-Clause
+// copyright-holders:Vas Crabb
+//============================================================
+//
+// debugosxwatchpointsview.m - MacOS X Cocoa debug window handling
+//
+// Copyright (c) 1996-2015, Nicola Salmoria and the MAME Team.
+// Visit http://mamedev.org for licensing and usage restrictions.
+//
+//============================================================
+
+#import "debugosxwatchpointsview.h"
+
+#include "debug/debugvw.h"
+
+
+@implementation MAMEWatchpointsView
+
+- (id)initWithFrame:(NSRect)f machine:(running_machine &)m {
+ if (!(self = [super initWithFrame:f type:DVT_WATCH_POINTS machine:m]))
+ return nil;
+ return self;
+}
+
+
+- (void)dealloc {
+ [super dealloc];
+}
+
+@end