srs/trunk/src/core/srs_core.cpp
Winlin 6e1134fe9b
Use clang format. v7.0.52 (#4433)
---------

Co-authored-by: ChenGH <chengh_math@126.com>
2025-08-11 23:19:19 -04:00

48 lines
682 B
C++

//
// Copyright (c) 2013-2025 The SRS Authors
//
// SPDX-License-Identifier: MIT
//
#include <srs_core.hpp>
_SrsContextId::_SrsContextId()
{
}
_SrsContextId::_SrsContextId(const _SrsContextId &cp)
{
v_ = cp.v_;
}
_SrsContextId &_SrsContextId::operator=(const _SrsContextId &cp)
{
v_ = cp.v_;
return *this;
}
_SrsContextId::~_SrsContextId()
{
}
const char *_SrsContextId::c_str() const
{
return v_.c_str();
}
bool _SrsContextId::empty() const
{
return v_.empty();
}
int _SrsContextId::compare(const _SrsContextId &to) const
{
return v_.compare(to.v_);
}
_SrsContextId &_SrsContextId::set_value(const std::string &v)
{
v_ = v;
return *this;
}