Custom menu

Fork of Menu by Peihsun Yeh

Selection.h

Committer:
LeoHsueh
Date:
2015-02-26
Revision:
3:3fceb6ff921e
Parent:
2:2654dc659298
Child:
4:396eff5be1a1

File content as of revision 3:3fceb6ff921e:

#ifndef SELECTION_H
#define SELECTION_H

#include "Menu.h"

class Menu; 

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

         
};

#endif