#include "handler_instance.h" #include "request.h" #include "core/object.h" HandlerInstance::HandlerInstance() { instance = nullptr; } HandlerInstance::HandlerInstance(std::function p_handler_func, Object *p_instance) { handler_func = p_handler_func; instance = p_instance; }