mirror of
https://github.com/Relintai/rcpp_framework.git
synced 2024-11-14 04:57:21 +01:00
18 lines
235 B
C++
18 lines
235 B
C++
|
|
#include "controller.h"
|
|
|
|
#include "request.h"
|
|
|
|
void Controller::handle_request_main(Request *request) {
|
|
}
|
|
|
|
void Controller::create_validators() {
|
|
}
|
|
|
|
|
|
Controller::Controller() {
|
|
create_validators();
|
|
}
|
|
|
|
Controller::~Controller() {
|
|
} |