summaryrefslogtreecommitdiffstatshomepage
path: root/src/osd/modules/debugger/osx/watchpointsview.mm
blob: cfaa3ee973f6a95f776f6a4db2f2293f11cbb1ce (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
//============================================================
//
//  watchpointsview.m - MacOS X Cocoa debug window handling
//
//============================================================

#import "watchpointsview.h"

#include "debug/debugvw.h"


@implementation MAMEWatchpointsView

- (id)initWithFrame:(NSRect)f machine:(running_machine &)m {
	if (!(self = [super initWithFrame:f type:DVT_WATCH_POINTS machine:m wholeLineScroll:YES]))
		return nil;
	return self;
}


- (void)dealloc {
	[super dealloc];
}

@end