mirror of
https://github.com/epasveer/seer.git
synced 2026-08-29 08:34:42 +08:00
16 lines
293 B
C++
16 lines
293 B
C++
#pragma once
|
|
|
|
#include "SeerLogWidget.h"
|
|
|
|
class SeerTildeLogWidget : public SeerLogWidget {
|
|
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit SeerTildeLogWidget (QWidget* parent = 0);
|
|
~SeerTildeLogWidget ();
|
|
|
|
void processText (const QString& text);
|
|
};
|
|
|