搭建代码框架并更新文档

This commit is contained in:
huanglinhuan
2025-12-11 22:58:25 +08:00
parent 38d519c220
commit 96fecf3c6f
93 changed files with 4924 additions and 10 deletions

View File

@@ -0,0 +1,33 @@
#include "displayflow/core/role/host_role.h"
namespace displayflow {
namespace core {
HostRole::HostRole() {
// TODO: 实现构造函数
}
HostRole::~HostRole() {
// TODO: 实现析构函数
}
RoleType HostRole::GetType() const {
return RoleType::Host;
}
bool HostRole::Start(std::shared_ptr<Session> session) {
// TODO: 实现启动逻辑
return false;
}
void HostRole::Stop() {
// TODO: 实现停止逻辑
}
bool HostRole::IsRunning() const {
return isRunning_;
}
} // namespace core
} // namespace displayflow