Custom menu

Fork of Menu by Peihsun Yeh

Selection.h

Committer:
LeoHsueh
Date:
2015-03-03
Revision:
4:396eff5be1a1
Parent:
3:3fceb6ff921e

File content as of revision 4:396eff5be1a1:

#ifndef SELECTION_H
#define SELECTION_H

#include "Menu.h"

class Menu; 

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

         
};

#endif