Raspberry Pi Weighting Control System
This project serves as a simple weighting control system, that was realized as a Bachelor Thesis
gui_direct.cpp
Go to the documentation of this file.
1 #include "gui_direct.h"
2 
3 #include <spdlog/spdlog.h>
4 
5 gui_direct::gui_direct(void (*func)()) {
6  this->func = func;
7 }
8 
10  func();
11 }
void render_element()
Definition: gui_direct.cpp:9
gui_direct(void(*func)())
Construct a new gui direct object.
Definition: gui_direct.cpp:5