Files
ylib/include/net/http_cookie.h
xx ef63cfd6aa 1、删除部分三方库
2、整合ylib为一个lib库
2024-05-26 12:51:32 +08:00

28 lines
558 B
C++

#pragma once
#include "http_define.h"
#if USE_NET_HTTP_UTIL
#include <map>
namespace ylib
{
namespace network
{
namespace http
{
class cookie
{
public:
cookie();
~cookie();
void merge(const cookie& ck);
void merge(const std::string& ck);
std::string to_string();
void clear();
private:
std::map<std::string, std::string> m_param;
};
}
}
}
#endif