Menu system broken
Dependencies: ANSITermMenuSystem
Fork of menuSystemMbed by
console.h@5:92389cf2106d, 2013-04-21 (annotated)
- Committer:
- Rybowonder
- Date:
- Sun Apr 21 20:15:31 2013 +0000
- Revision:
- 5:92389cf2106d
- Parent:
- 0:a5ece7312edc
- Child:
- 6:2f220f5d782d
Error off the hop
Who changed what in which revision?
User | Revision | Line number | New contents of line |
---|---|---|---|
mbedDevLondon | 0:a5ece7312edc | 1 | // console.h |
mbedDevLondon | 0:a5ece7312edc | 2 | // |
mbedDevLondon | 0:a5ece7312edc | 3 | #ifndef CONSOLE_H |
mbedDevLondon | 0:a5ece7312edc | 4 | #define CONSOLE_H |
mbedDevLondon | 0:a5ece7312edc | 5 | |
mbedDevLondon | 0:a5ece7312edc | 6 | #include <iostream> |
mbedDevLondon | 0:a5ece7312edc | 7 | #include <iomanip> |
mbedDevLondon | 0:a5ece7312edc | 8 | #include <cmath> |
mbedDevLondon | 0:a5ece7312edc | 9 | #include <cstdlib> |
mbedDevLondon | 0:a5ece7312edc | 10 | |
mbedDevLondon | 0:a5ece7312edc | 11 | |
mbedDevLondon | 0:a5ece7312edc | 12 | void clrscr(); |
mbedDevLondon | 0:a5ece7312edc | 13 | void gotoxy(int, int); |
mbedDevLondon | 0:a5ece7312edc | 14 | void printXY( char * text, int x, int y); |
mbedDevLondon | 0:a5ece7312edc | 15 | void setrgb(int); |
Rybowonder | 5:92389cf2106d | 16 | void printRec(int x1, int y1, int x2, int y2); |
Rybowonder | 5:92389cf2106d | 17 | void eraseRec(int x1, int y1, int x2, int y2); |
mbedDevLondon | 0:a5ece7312edc | 18 | |
mbedDevLondon | 0:a5ece7312edc | 19 | #endif |