Serial LCD Menu system with buttons instead of RPG. Based on Peihsun Yeh's work

Fork of Menu by Peihsun Yeh

Menu.h

Committer:
mshuck
Date:
2013-08-04
Revision:
5:70fec61bebaf
Parent:
1:84d263c8932d

File content as of revision 5:70fec61bebaf:

#ifndef MENU_H
#define MENU_H

#include "mbed.h"
#include "Selection.h"
#include <vector>

class Selection;

class Menu {
    private:
               
    public:
        vector<Selection> selections;
        char *menuID;
        
        Menu(char *);
        
        void add(const Selection &toAdd);
        char *getText(int);
};
#endif