user config

Fork of Menu by Peihsun Yeh

required for StormXalike

Menu.h

Committer:
rakware
Date:
2015-03-05
Revision:
3:742c6553f5f7
Parent:
1:84d263c8932d

File content as of revision 3:742c6553f5f7:

#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