srs/trunk/src/utest/srs_utest_core.hpp
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

34 lines
388 B
C++

//
// Copyright (c) 2013-2025 The SRS Authors
//
// SPDX-License-Identifier: MIT
//
#ifndef SRS_UTEST_CORE_HPP
#define SRS_UTEST_CORE_HPP
/*
#include <srs_utest_core.hpp>
*/
#include <srs_utest.hpp>
#include <string>
class MyNormalObject
{
private:
int id_;
public:
MyNormalObject(int id)
{
id_ = id;
}
int id()
{
return id_;
}
};
#endif