mirror of
https://github.com/jpd002/Play-.git
synced 2025-04-28 13:47:57 +03:00
17 lines
270 B
C++
17 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;
|
|
};
|