summaryrefslogtreecommitdiffstatshomepage
path: root/src/osd/sdl/debugqtlogwindow.h
blob: 7b38a97798901b5fd8229f6edc225fd54a1fb936 (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
28
#ifndef __DEBUG_QT_LOG_WINDOW_H__
#define __DEBUG_QT_LOG_WINDOW_H__

#include <QtGui/QtGui>

#include "debugqtview.h"
#include "debugqtwindow.h"


//============================================================
//  The Log Window.
//============================================================
class LogWindow : public WindowQt
{
	Q_OBJECT

public:
	LogWindow(running_machine* machine, QWidget* parent=NULL);
	virtual ~LogWindow() {}


private:
	// Widgets
	DebuggerView* m_logView;
};


#endif