mirror of
https://github.com/Relintai/rcpp_framework.git
synced 2024-11-10 00:52:11 +01:00
WebNode now inherits from Node.
This commit is contained in:
parent
ad55c03d59
commit
5b7cdd3829
@ -21,7 +21,7 @@ void WebNode::migrate() {
|
||||
|
||||
}
|
||||
|
||||
WebNode::WebNode() {
|
||||
WebNode::WebNode() : Node() {
|
||||
create_validators();
|
||||
}
|
||||
|
||||
|
@ -1,11 +1,11 @@
|
||||
#ifndef WEB_NODE_H
|
||||
#define WEB_NODE_H
|
||||
|
||||
#include "core/object.h"
|
||||
#include "core/nodes/node.h"
|
||||
|
||||
class Request;
|
||||
|
||||
class WebNode : public Object {
|
||||
class WebNode : public Node {
|
||||
public:
|
||||
virtual void handle_request_main(Request *request);
|
||||
virtual void create_validators();
|
||||
|
Loading…
Reference in New Issue
Block a user