2006-06-15 04:19:30 +00:00
|
|
|
#ifndef _REGVIEWSCU_H_
|
|
|
|
#define _REGVIEWSCU_H_
|
|
|
|
|
|
|
|
#include "RegViewPage.h"
|
2006-07-13 02:44:13 +00:00
|
|
|
#include "../MIPS.h"
|
2007-12-01 04:08:34 +00:00
|
|
|
#include "../VirtualMachine.h"
|
2006-06-15 04:19:30 +00:00
|
|
|
|
2012-03-12 05:24:43 +00:00
|
|
|
class CRegViewSCU : public CRegViewPage, public boost::signals2::trackable
|
2006-06-15 04:19:30 +00:00
|
|
|
{
|
|
|
|
public:
|
2013-04-29 04:53:49 +00:00
|
|
|
CRegViewSCU(HWND, const RECT&, CVirtualMachine&, CMIPS*);
|
2006-12-26 21:53:04 +00:00
|
|
|
virtual ~CRegViewSCU();
|
2006-06-15 04:19:30 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
void Update();
|
2012-03-12 05:24:43 +00:00
|
|
|
std::string GetDisplayText();
|
2006-06-15 04:19:30 +00:00
|
|
|
|
|
|
|
CMIPS* m_pCtx;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|