summaryrefslogtreecommitdiffstatshomepage
path: root/src/osd/modules/debugger/win/logwininfo.h
blob: 45c414474911b00cc317630e2fe829d0a744a5c5 (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
// license:BSD-3-Clause
// copyright-holders:Aaron Giles, Vas Crabb
//============================================================
//
//  logwininfo.h - Win32 debug window handling
//
//============================================================

#ifndef __DEBUG_WIN_LOG_WIN_INFO_H__
#define __DEBUG_WIN_LOG_WIN_INFO_H__

#include "debugwin.h"

#include "debugwininfo.h"


class logwin_info : public debugwin_info
{
public:
	logwin_info(debugger_windows_interface &debugger);
	virtual ~logwin_info();
};

#endif