mirror of
https://github.com/Relintai/rcpp_framework.git
synced 2024-11-10 00:52:11 +01:00
21 lines
273 B
C++
21 lines
273 B
C++
#ifndef COOKIE_H
|
|
#define COOKIE_H
|
|
|
|
#include "core/string.h"
|
|
|
|
class Cookie {
|
|
public:
|
|
//todo date
|
|
String domain;
|
|
String path;
|
|
String key;
|
|
String value;
|
|
bool http_only;
|
|
bool secure;
|
|
|
|
Cookie();
|
|
Cookie(const String &p_key, const String &p_value);
|
|
~Cookie();
|
|
};
|
|
|
|
#endif |