menu v1

Fork of Menu by Peihsun Yeh

Menu.h

Committer:
jjcimon
Date:
2015-05-13
Revision:
3:3cdd377f5899
Parent:
1:84d263c8932d

File content as of revision 3:3cdd377f5899:

#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