// license:BSD-3-Clause // copyright-holders:Vas Crabb //============================================================ // // debugosxpointsviewer.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 "debugosxdebugwindowhandler.h" #include "emu.h" #import @class MAMEDebugConsole; @interface MAMEPointsViewer : MAMEAuxiliaryDebugWindowHandler { NSTabView *tabs; } - (id)initWithMachine:(running_machine &)m console:(MAMEDebugConsole *)c; - (IBAction)changeSubview:(id)sender; @end