公告板
版本库
filestore
活动
搜索
登录
valib
/
c_bhomebus
shm的c++通讯库
概况
操作记录
提交次数
目录
文档
派生
对比
blame
|
历史
|
原始文档
Adjust the free action independent of the return value from the function re...
Fu Juntang
2021-10-08
5add39f46c8323875fb56bc764a8ff627ad82f18
[valib/c_bhomebus.git]
/
src
/
logger_factory.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef __LOGGER_FACTORY_H__
#define __LOGGER_FACTORY_H__
#include "logger.h"
#include "bus_config.h"
class LoggerFactory {
private:
static Logger *logger;
public:
static Logger* getLogger();
};
#endif