rcpp_framework/web/http/cookie.cpp

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() {
}