Ryan Scott / menuSystemMbedBroken

Dependencies:   ANSITermMenuSystem

Fork of menuSystemMbed by Ryan Scott

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers console.h Source File

console.h

00001 // console.h
00002 //
00003 #ifndef CONSOLE_H
00004 #define CONSOLE_H
00005 
00006 #include <iostream>
00007 #include <iomanip>
00008 #include <cmath>
00009 #include <cstdlib>
00010 
00011 
00012 void clrscr();
00013 void gotoxy(int, int);
00014 void printXY( char * text, int x, int y);
00015 void setrgb(int);
00016 void printRec(int x1, int y1, int x2, int y2);
00017 //void eraseRec(int x1, int y1, int x2, int y2);
00018 
00019 #endif