PersonalVotingMachine/basic-setup/main/impl/views/IndexView.cpp
2020-12-22 14:30:09 +02:00

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);
}