mirror of
https://github.com/Relintai/rcpp_framework.git
synced 2024-11-10 00:52:11 +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() {
|
|
} |