Raspberry Pi Weighting Control System
This project serves as a simple weighting control system, that was realized as a Bachelor Thesis
Classes | Enumerations
gui_observer.h File Reference
#include "gui_element.h"
#include "app_workspace.h"

Go to the source code of this file.

Classes

class  gui_observer
 Allows to create a label, that automatically updates to observed variable value. This class doesn't work well with strings. More...
 

Enumerations

enum  observed_type { OBS_INT , OBS_LONG , OBS_FLOAT , OBS_STRING }
 Types, that can be observed. More...
 

Enumeration Type Documentation

◆ observed_type

Types, that can be observed.

Enumerator
OBS_INT 
OBS_LONG 
OBS_FLOAT 
OBS_STRING 

Definition at line 11 of file gui_observer.h.

11  {
12  OBS_INT,
13  OBS_LONG,
14  OBS_FLOAT,
16 };
@ OBS_INT
Definition: gui_observer.h:12
@ OBS_FLOAT
Definition: gui_observer.h:14
@ OBS_LONG
Definition: gui_observer.h:13
@ OBS_STRING
Definition: gui_observer.h:15