mirror of
https://github.com/silverf0x/RpcView
synced 2026-06-08 17:26:38 +00:00
20 lines
388 B
C++
20 lines
388 B
C++
#ifndef _DECOMPILATION_WIDGET_H_
|
|
#define _DECOMPILATION_WIDGET_H_
|
|
|
|
#include "../Qt/Qt.h"
|
|
#include "IdlHighlighter.h"
|
|
|
|
class DecompilationWidget_C : public QDockWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
DecompilationWidget_C(QWidget* pParent);
|
|
void InsertText(const char* Txt);
|
|
|
|
private:
|
|
IdlHighlighter_C* pIdlHighlighter;
|
|
QTextEdit* pTextEdit;
|
|
};
|
|
|
|
#endif //_DECOMPILATION_WIDGET_H_
|