mirror of
https://github.com/Relintai/pandemonium_engine.git
synced 2025-01-11 05:19:50 +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() {
|
||
|
}
|