Adjust the LCD_Menu to use the mBed Application board resources

Dependents:   class_project_main

Fork of SerialLCD_Menu by Mark Shuck

Selection.h

Committer:
jakowisp
Date:
2013-09-12
Revision:
13:98d452550cbe
Parent:
11:af7687f1a985

File content as of revision 13:98d452550cbe:

#ifndef SELECTION_H
#define SELECTION_H

#include "Menu.h"

class Menu; 

class Selection {
    private:
        
    public:
        void (*fun)();   // pointer to a function to execute 
        uint8_t value;
        char* selText;   // selection text
        int pos;         // selection position
        Menu *childMenu; 
        
        Selection(void (*)(), int, Menu *, char *); 
        Selection(uint8_t, int, Menu *, char *); 
};

#endif