1 Star 0 Fork 2

zpin/faceHttpd

forked from 樊智慧/faceHttpd 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
return_object_if.h 513 Bytes
一键复制 编辑 原始数据 按行查看 历史
樊智慧 提交于 2019-06-26 14:08 . 提交
#ifndef __FHTTPD_BASE_OBJECT_IF_H__
#define __FHTTPD_BASE_OBJECT_IF_H__
#include <string>
#include "json/json.h"
class SerializeIf
{
public:
virtual Json::Value Convert2JsonValue() = 0;
};
class BaseObjectIf : public SerializeIf
{
public:
BaseObjectIf(int c, const std::string& msg):
code(c),
message(msg)
{
}
virtual ~BaseObjectIf() {
}
void setCode(int c){
code = c;
}
void setMessage(const std::string & msg){
message = msg;
}
protected:
int code;
std::string message;
};
#endif
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/124327288/faceHttpd.git
[email protected]:124327288/faceHttpd.git
124327288
faceHttpd
faceHttpd
master

搜索帮助