rcpp_framework/core/http/cookie.cpp

18 lines
244 B
C++
Raw Normal View History

#include "cookie.h"
Cookie::Cookie(const std::string &p_key, const std::string &p_value) {
http_only = true;
secure = false;
key = p_key;
value = p_value;
}
Cookie::Cookie() {
http_only = true;
secure = false;
}
Cookie::~Cookie() {
}