summaryrefslogtreecommitdiffstatshomepage
path: root/src/osd/modules/debugger/osx/consoleview.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/osd/modules/debugger/osx/consoleview.h')
-rw-r--r--src/osd/modules/debugger/osx/consoleview.h27
1 files changed, 27 insertions, 0 deletions
diff --git a/src/osd/modules/debugger/osx/consoleview.h b/src/osd/modules/debugger/osx/consoleview.h
new file mode 100644
index 00000000000..5538ea49f28
--- /dev/null
+++ b/src/osd/modules/debugger/osx/consoleview.h
@@ -0,0 +1,27 @@
+// license:BSD-3-Clause
+// copyright-holders:Vas Crabb
+//============================================================
+//
+// consoleview.h - 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 "debugosx.h"
+
+#import "debugview.h"
+
+#include "emu.h"
+
+#import <Cocoa/Cocoa.h>
+
+
+@interface MAMEConsoleView : MAMEDebugView
+{
+}
+
+- (id)initWithFrame:(NSRect)f machine:(running_machine &)m;
+
+@end