tomato/src/stream_manager_ui.hpp
Green Sky 964f6de656
big stream progress
- stream manager (with bare bones ui)
- debug video tap
- toxav progress
- toxav debug ui
- some default devices
2024-09-24 16:16:16 +02:00

16 lines
247 B
C++

#pragma once
#include <solanaceae/object_store/fwd.hpp>
#include "./stream_manager.hpp"
class StreamManagerUI {
ObjectStore2& _os;
StreamManager& _sm;
public:
StreamManagerUI(ObjectStore2& os, StreamManager& sm);
void render(void);
};