Custom menu

Fork of Menu by Peihsun Yeh

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers Menu.h Source File

Menu.h

00001 #ifndef MENU_H
00002 #define MENU_H
00003 
00004 #include "mbed.h"
00005 #include "Selection.h"
00006 #include <vector>
00007 
00008 class Selection;
00009 
00010 class Menu {
00011     public:
00012         vector<Selection> selections;
00013         
00014         Menu(const char *, Menu *parent);
00015         const char *menuID;
00016         Menu *parent;
00017         
00018         void add(const Selection &toAdd);
00019         char *getText(int);
00020     private:
00021 
00022 };
00023 #endif