mirror of
https://github.com/Relintai/pandemonium_engine.git
synced 2024-12-25 05:07:12 +01:00
18 lines
234 B
C++
18 lines
234 B
C++
|
|
#include "cookie.h"
|
|
|
|
Cookie::Cookie(const String &p_key, const String &p_value) {
|
|
http_only = true;
|
|
secure = false;
|
|
|
|
key = p_key;
|
|
value = p_value;
|
|
}
|
|
|
|
Cookie::Cookie() {
|
|
http_only = true;
|
|
secure = false;
|
|
}
|
|
|
|
Cookie::~Cookie() {
|
|
} |