Snoke
SideMenu.h
Go to the documentation of this file.
1 #include <list>
2 
3 
4 typedef struct
5 {
6  const char* name;
7  const char* field;
8 } SideButton;
9 
10 
11 class SideMenu
12 {
13 private:
14  list<SideButton> buttons;
15 
16 
17 };
const char * name
Definition: SideMenu.h:6
list< SideButton > buttons
Definition: SideMenu.h:14
const char * field
Definition: SideMenu.h:7