PersonalVotingMachine/basic-setup/main/impl/views/IndexView.cpp

15 lines
223 B
C++
Raw Permalink Normal View History

2020-12-22 14:30:09 +02:00
#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);
}