mirror of
https://github.com/HavocFramework/Havoc
synced 2026-06-08 11:13:29 +00:00
17 lines
380 B
C++
17 lines
380 B
C++
#ifndef HAVOC_EVENTVIEWER_HPP
|
|
#define HAVOC_EVENTVIEWER_HPP
|
|
|
|
#include <global.hpp>
|
|
|
|
class HavocNamespace::UserInterface::SmallWidgets::EventViewer : public QWidget {
|
|
QGridLayout *gridLayout;
|
|
public:
|
|
QTextEdit *EventViewerConsole;
|
|
QWidget* EventViewer;
|
|
|
|
void setupUi(QWidget* Widget);
|
|
void AppendText(const QString& Time, const QString &text) const;
|
|
};
|
|
|
|
#endif
|