Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Fork of Menu by
Diff: Selection.h
- Revision:
- 1:84d263c8932d
- Parent:
- 0:577f0ec71f4c
- Child:
- 2:2654dc659298
diff -r 577f0ec71f4c -r 84d263c8932d Selection.h
--- a/Selection.h Thu Feb 28 22:19:37 2013 +0000
+++ b/Selection.h Tue Mar 05 20:33:27 2013 +0000
@@ -1,6 +1,10 @@
#ifndef SELECTION_H
#define SELECTION_H
+#include "Menu.h"
+
+class Menu;
+
class Selection {
private:
@@ -8,8 +12,9 @@
void (*fun)(); // pointer to a function to execute
char* selText; // selection text
int pos; // selection position
+ Menu *childMenu;
- Selection(void (*)(), int, char *);
+ Selection(void (*)(), int, Menu *, char *);
//debug functions
};
