mirror of
https://github.com/jpd002/Play-.git
synced 2025-04-29 06:07:56 +03:00
12 lines
314 B
C++
12 lines
314 B
C++
#include "VariablesView.h"
|
|
|
|
CVariablesView::CVariablesView(QMdiArea* parent)
|
|
: CTagsView(parent)
|
|
{
|
|
setWindowTitle("Variables");
|
|
}
|
|
|
|
void CVariablesView::SetContext(CMIPS* context, CBiosDebugInfoProvider* biosDebugInfoProvider)
|
|
{
|
|
CTagsView::SetContext(context, &context->m_Variables, biosDebugInfoProvider);
|
|
}
|