// license:BSD-3-Clause // copyright-holders:Vas Crabb //============================================================ // // debugosxerrorlogviewer.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 @class MAMEDebugConsole, MAMEErrorLogView; @interface MAMEErrorLogViewer : MAMEAuxiliaryDebugWindowHandler { MAMEErrorLogView *logView; } - (id)initWithMachine:(running_machine &)m console:(MAMEDebugConsole *)c; @end