15 lines
275 B
C++
15 lines
275 B
C++
#ifndef SERIAL_SAMPLE_LOGWINDOW_H
|
|
#define SERIAL_SAMPLE_LOGWINDOW_H
|
|
|
|
class ConnectionWindow;
|
|
|
|
class LogWindow {
|
|
public:
|
|
LogWindow() = default;
|
|
~LogWindow() = default;
|
|
|
|
void Render(bool* p_open, ConnectionWindow& conn_win);
|
|
};
|
|
|
|
#endif // SERIAL_SAMPLE_LOGWINDOW_H
|