mirror of
https://github.com/libretro/Play-.git
synced 2025-01-07 09:00:25 +00:00
22 lines
410 B
C++
22 lines
410 B
C++
#ifndef _REGVIEWSCU_H_
|
|
#define _REGVIEWSCU_H_
|
|
|
|
#include "RegViewPage.h"
|
|
#include "../MIPS.h"
|
|
#include "../VirtualMachine.h"
|
|
|
|
class CRegViewSCU : public CRegViewPage, public boost::signals2::trackable
|
|
{
|
|
public:
|
|
CRegViewSCU(HWND, const RECT&, CVirtualMachine&, CMIPS*);
|
|
virtual ~CRegViewSCU();
|
|
|
|
private:
|
|
void Update();
|
|
std::string GetDisplayText();
|
|
|
|
CMIPS* m_pCtx;
|
|
};
|
|
|
|
#endif
|