PersonalVotingMachine/basic-setup/main/impl/controllers/IndexController.cpp

17 lines
256 B
C++
Raw Permalink Normal View History

2020-12-22 14:30:09 +02:00
/**
* @file IndexController.cpp
* @brief IndexController implementation file
* */
#include "controller.h"
IndexController::IndexController(){
this->vw = new IndexView();
}
void IndexController::index(){
this->vw->render((void *) "Index ctrl");
}