user config

Fork of Menu by Peihsun Yeh

required for StormXalike

Selection.h

Committer:
rakware
Date:
2015-03-05
Revision:
3:742c6553f5f7
Parent:
2:2654dc659298

File content as of revision 3:742c6553f5f7:

#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