Play-/Source/ui_qt/DebugSupport/RegViewGeneral.h

18 lines
270 B
C
Raw Permalink Normal View History

2019-08-31 12:33:24 -04:00
#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;
};