blob: 5174f5b119b1429e0a589f420b087f401f14c9df (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
// license:BSD-3-Clause
// copyright-holders:Vas Crabb
//============================================================
//
// errorlogviewer.h - MacOS X Cocoa debug window handling
//
//============================================================
#import "debugosx.h"
#import "debugwindowhandler.h"
#include "emu.h"
#import <Cocoa/Cocoa.h>
@class MAMEDebugConsole, MAMEErrorLogView;
@interface MAMEErrorLogViewer : MAMEAuxiliaryDebugWindowHandler
{
MAMEErrorLogView *logView;
}
- (id)initWithMachine:(running_machine &)m console:(MAMEDebugConsole *)c;
@end
|