Menu system broken
Dependencies: ANSITermMenuSystem
Fork of menuSystemMbed by
console.h@8:6ddb8c26387a, 2013-05-04 (annotated)
- Committer:
- Rybowonder
- Date:
- Sat May 04 17:37:57 2013 +0000
- Revision:
- 8:6ddb8c26387a
- Parent:
- 6:2f220f5d782d
For Mitchener
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 | 6:2f220f5d782d | 17 | //void eraseRec(int x1, int y1, int x2, int y2); |
mbedDevLondon | 0:a5ece7312edc | 18 | |
mbedDevLondon | 0:a5ece7312edc | 19 | #endif |