1 Star 0 Fork 0

Velcon-Zheng/bowtie

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
log.h 392 Bytes
一键复制 编辑 原始数据 按行查看 历史
#ifndef LOG_H_
#define LOG_H_
#include <iostream>
#include "threading.h"
class SyncLogger {
public:
SyncLogger() : mutex_m() { }
void msg(const char *s) {
ThreadSafe ts(&mutex_m);
std::cout << s << std::endl;
}
void msg(const std::string& s) {
ThreadSafe ts(&mutex_m);
std::cout << s << std::endl;
}
private:
MUTEX_T mutex_m;
};
extern SyncLogger glog;
#endif /*LOG_H_*/
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/Velcon-Zheng/bowtie.git
git@gitee.com:Velcon-Zheng/bowtie.git
Velcon-Zheng
bowtie
bowtie
master

搜索帮助