mirror of
https://github.com/Relintai/pandemonium_engine.git
synced 2025-01-12 22:01:10 +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
|