mirror of
https://github.com/epasveer/seer.git
synced 2026-08-30 00:50:42 +08:00
7ef7f9cd63
Direct all '=' from the gdb log to the seer log.
16 lines
287 B
C++
16 lines
287 B
C++
#pragma once
|
|
|
|
#include "SeerLogWidget.h"
|
|
|
|
class SeerGdbLogWidget : public SeerLogWidget {
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit SeerGdbLogWidget (QWidget* parent = 0);
|
|
~SeerGdbLogWidget ();
|
|
|
|
void processText (const QString& text);
|
|
};
|
|
|