mirror of
https://github.com/jpd002/Play-.git
synced 2025-04-28 21:57:57 +03:00
18 lines
270 B
C
18 lines
270 B
C
![]() |
#pragma once
|
||
|
|
||
|
#include "RegViewPage.h"
|
||
|
#include "MIPS.h"
|
||
|
#include <string>
|
||
|
|
||
|
class CRegViewGeneral : public CRegViewPage
|
||
|
{
|
||
|
public:
|
||
|
CRegViewGeneral(QWidget*, CMIPS*);
|
||
|
virtual ~CRegViewGeneral() = default;
|
||
|
|
||
|
private:
|
||
|
void Update() override;
|
||
|
|
||
|
CMIPS* m_pCtx = nullptr;
|
||
|
};
|