diff options
Diffstat (limited to 'src/osd/modules/debugger/osx/breakpointsview.h')
-rw-r--r-- | src/osd/modules/debugger/osx/breakpointsview.h | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/src/osd/modules/debugger/osx/breakpointsview.h b/src/osd/modules/debugger/osx/breakpointsview.h new file mode 100644 index 00000000000..f2701200e25 --- /dev/null +++ b/src/osd/modules/debugger/osx/breakpointsview.h @@ -0,0 +1,27 @@ +// license:BSD-3-Clause +// copyright-holders:Vas Crabb +//============================================================ +// +// debugosxbreakpointsview.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 MAMEBreakpointsView : MAMEDebugView +{ +} + +- (id)initWithFrame:(NSRect)f machine:(running_machine &)m; + +@end |