2023-01-23 08:44:16 +00:00
|
|
|
#pragma once
|
|
|
|
|
2023-03-07 11:02:18 +00:00
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
struct Config; // forward declaration from ../config.h
|
|
|
|
struct LogcatEntry; // forward declaration from ../logcat_entry.h
|
2023-02-22 09:33:36 +00:00
|
|
|
class LogcatThread; // forward declaration from ../logcat_thread.h
|
2023-01-23 08:44:16 +00:00
|
|
|
|
2023-03-07 11:02:18 +00:00
|
|
|
void debug_window(LogcatThread& logcat_thread, const Config& active_config,
|
|
|
|
std::vector<LogcatEntry>& logcat_entries, std::vector<size_t>& filtered_logcat_entry_offsets);
|