13 #include "filterchain.h" 14 #include "cppwebframework_global.h" 23 class CPPWEBFRAMEWORKSHARED_EXPORT
Filter virtual ~Filter()
Virtual destructor.
Definition: filter.h:29
The FilterChain class is responsable to dispatch a requisition. This class was built to work with Fil...
Definition: filterchain.h:29
The Filter class works like a filter. You can use this class to validate sessions or measuring runtim...
Definition: filter.h:23
void doFilter(CWF::Request &request, CWF::Response &response)
This method dispaches a requisition to a Request or, if the requesition is for a file, it can reads and send the file through the Response.
Definition: filterchain.cpp:18
virtual void doFilter(CWF::Request &request, CWF::Response &response, FilterChain &chain)
This method will be called always that the CppWebServer receives a requisition.
Definition: filter.h:91