summaryrefslogtreecommitdiffstatshomepage
path: root/src/osd/modules/debugger/osx/pointsviewer.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/osd/modules/debugger/osx/pointsviewer.h')
-rw-r--r--src/osd/modules/debugger/osx/pointsviewer.h32
1 files changed, 32 insertions, 0 deletions
diff --git a/src/osd/modules/debugger/osx/pointsviewer.h b/src/osd/modules/debugger/osx/pointsviewer.h
new file mode 100644
index 00000000000..3943f6b486f
--- /dev/null
+++ b/src/osd/modules/debugger/osx/pointsviewer.h
@@ -0,0 +1,32 @@
+// license:BSD-3-Clause
+// copyright-holders:Vas Crabb
+//============================================================
+//
+// pointsviewer.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 "debugwindowhandler.h"
+
+#include "emu.h"
+
+#import <Cocoa/Cocoa.h>
+
+
+@class MAMEDebugConsole;
+
+@interface MAMEPointsViewer : MAMEAuxiliaryDebugWindowHandler
+{
+ NSTabView *tabs;
+}
+
+- (id)initWithMachine:(running_machine &)m console:(MAMEDebugConsole *)c;
+
+- (IBAction)changeSubview:(id)sender;
+
+@end