mirror of
https://github.com/Relintai/rcpp_framework.git
synced 2024-11-14 04:57:21 +01:00
21 lines
296 B
C++
21 lines
296 B
C++
#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 |