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