18 lines
223 B
C++
18 lines
223 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
|
|
namespace rk3588 {
|
|
|
|
class MediaServerApp {
|
|
public:
|
|
explicit MediaServerApp(std::string config_path);
|
|
|
|
int Start();
|
|
|
|
private:
|
|
std::string config_path_;
|
|
};
|
|
|
|
} // namespace rk3588
|