rcpp_framework/core/http/cookie.h

21 lines
296 B
C
Raw Normal View History

#ifndef COOKIE_H
#define COOKIE_H
#include <string>
class Cookie {
public:
//todo date
std::string domain;
std::string path;
std::string key;
std::string value;
bool http_only;
bool secure;
Cookie();
Cookie(const std::string &p_key, const std::string &p_value);
~Cookie();
};
#endif