mirror of
https://github.com/jpd002/Play-.git
synced 2025-04-28 21:57:57 +03:00
17 lines
257 B
C++
17 lines
257 B
C++
#pragma once
|
|
|
|
#include "TagsView.h"
|
|
|
|
class CFunctionsView : public CTagsView
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
CFunctionsView(QMdiArea*);
|
|
virtual ~CFunctionsView() = default;
|
|
|
|
void SetContext(CMIPS*, CBiosDebugInfoProvider*);
|
|
|
|
public slots:
|
|
void OnImportClick();
|
|
};
|