Web framework C++
2.0.0
Simple web framework on c++ designed to easily create web pages, etc
|
Cloneable interface of object wth value and serializable method. More...
#include <entity.h>
Public Member Functions | |
virtual | ~Entity ()=default |
virtual void | setValue (std::string value)=0 |
virtual std::string | toString ()=0 |
virtual std::unique_ptr< Entity > | clone ()=0 |
Cloneable interface of object wth value and serializable method.
Abstract class with value and some methods. Could be cloned by method clone
|
virtualdefault |
default destructor
|
pure virtual |
Clone this object
Implemented in CookieEntity, CookieEntityWeek, CookieEntityHttp, and CookieEntityDefault.
|
pure virtual |
Set serialized value
value | serialized value |
Implemented in CookieEntity, CookieEntityWeek, CookieEntityHttp, and CookieEntityDefault.
|
pure virtual |
Serialize current entity
Implemented in CookieEntity, CookieEntityDefault, CookieEntityWeek, and CookieEntityHttp.