20 lines
285 B
C++
20 lines
285 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
|
|
#include "graph_manager.h"
|
|
|
|
namespace rk3588 {
|
|
|
|
class MediaServerApp {
|
|
public:
|
|
explicit MediaServerApp(std::string config_path);
|
|
int Start();
|
|
|
|
private:
|
|
std::string config_path_;
|
|
GraphManager graph_manager_{};
|
|
};
|
|
|
|
} // namespace rk3588
|