mirror of
https://github.com/Valeh2012/PersonalVotingMachine
synced 2024-11-22 09:20:59 +02:00
17 lines
256 B
C++
17 lines
256 B
C++
/**
|
|
* @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");
|
|
}
|