menu v1

Fork of Menu by Peihsun Yeh

Selection.h

Committer:
jjcimon
Date:
2015-05-13
Revision:
3:3cdd377f5899
Parent:
2:2654dc659298

File content as of revision 3:3cdd377f5899:

#ifndef SELECTION_H
#define SELECTION_H

#include "Menu.h"

class Menu; 

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

#endif