mirror of
https://github.com/libretro/Play-.git
synced 2024-12-04 15:26:23 +00:00
24 lines
487 B
C++
24 lines
487 B
C++
#ifndef _REGVIEWGENERAL_H_
|
|
#define _REGVIEWGENERAL_H_
|
|
|
|
#include "RegViewPage.h"
|
|
#include "../MIPS.h"
|
|
#include "../VirtualMachine.h"
|
|
#include <string>
|
|
|
|
class CRegViewGeneral : public CRegViewPage, public boost::signals2::trackable
|
|
{
|
|
public:
|
|
CRegViewGeneral(HWND, const RECT&, CVirtualMachine&, CMIPS*);
|
|
virtual ~CRegViewGeneral();
|
|
|
|
private:
|
|
void Update();
|
|
std::string GetDisplayText();
|
|
|
|
CVirtualMachine& m_virtualMachine;
|
|
CMIPS* m_pCtx;
|
|
};
|
|
|
|
#endif
|