mirror of
https://github.com/RPCSX/rpcsx.git
synced 2025-12-06 07:12:14 +01:00
make precompiled header slimmer under Linux to increase CI and dev-machine build-times make sure unused modules don't compile add unused modules to the VS project to easier keep track of them
25 lines
327 B
C++
25 lines
327 B
C++
#pragma once
|
|
#include "Emu/ConLog.h"
|
|
|
|
|
|
class LogFrame
|
|
: public wxPanel
|
|
, public ThreadBase
|
|
{
|
|
wxListView& m_log;
|
|
|
|
public:
|
|
LogFrame(wxWindow* parent);
|
|
~LogFrame();
|
|
|
|
bool Close(bool force = false);
|
|
|
|
private:
|
|
virtual void Task();
|
|
|
|
void OnQuit(wxCloseEvent& event);
|
|
|
|
DECLARE_EVENT_TABLE();
|
|
};
|
|
|
|
extern LogFrame* ConLogFrame; |