mirror of
https://github.com/Valeh2012/PersonalVotingMachine
synced 2024-11-25 18:31:00 +02:00
15 lines
223 B
C++
15 lines
223 B
C++
|
#include "view.h"
|
||
|
#include "module.h"
|
||
|
|
||
|
/**
|
||
|
* @file IndexView.cpp
|
||
|
* @brief IndexView class implementation
|
||
|
* */
|
||
|
|
||
|
IndexView::IndexView(){};
|
||
|
|
||
|
void IndexView::render(void * data){
|
||
|
|
||
|
this->screen.print_screen((char *)data);
|
||
|
}
|