- stream manager (with bare bones ui) - debug video tap - toxav progress - toxav debug ui - some default devices
16 lines
247 B
C++
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);
|
|
};
|
|
|