15 lines
293 B
C++
15 lines
293 B
C++
#ifndef SERIAL_SAMPLE_LOGWINDOW_H
|
|
#define SERIAL_SAMPLE_LOGWINDOW_H
|
|
|
|
class ConnectionWindow;
|
|
|
|
class LogWindow {
|
|
public:
|
|
LogWindow() = default;
|
|
~LogWindow() = default;
|
|
|
|
static void render(bool* paramOpen, ConnectionWindow& connectionWindow);
|
|
};
|
|
|
|
#endif // SERIAL_SAMPLE_LOGWINDOW_H
|