Now can send debugging info (actions) to separate tty

This commit is contained in:
Keith Winstein
2011-01-22 16:10:23 -05:00
parent 1c6819ae0d
commit bd2e1f99c1
3 changed files with 78 additions and 19 deletions
+2 -2
View File
@@ -77,14 +77,14 @@ namespace Terminal {
Emulator( size_t s_width, size_t s_height );
~Emulator();
std::string input( char c );
std::string input( char c, int debug_fd );
void resize( size_t s_width, size_t s_height );
size_t get_width( void ) { return width; }
size_t get_height( void ) { return height; }
void debug_printout( FILE *f );
void debug_printout( int fd );
};
}