Changeset 514 for trunk/nv/interface/terminal.hh
- Timestamp:
- 08/08/16 18:25:48 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/nv/interface/terminal.hh
r487 r514 17 17 #include <nv/core/position.hh> 18 18 #include <nv/core/io_event.hh> 19 #include <nv/core/term_color.hh> 19 20 20 21 namespace nv 21 22 { 23 24 22 25 class terminal 23 26 { … … 36 39 * Print a character of the given color to the screen memory 37 40 */ 38 virtual void print( position p, uint32color, char ch ) = 0;41 virtual void print( position p, term_color fgcolor, term_color bgcolor, char ch ) = 0; 39 42 40 43 /** 41 44 * Clear screen memory 42 45 */ 43 virtual void clear( rectangle r ) = 0;46 virtual void clear( rectangle r, term_color fgcolor, term_color bgcolor ) = 0; 44 47 45 48 /**
Note: See TracChangeset
for help on using the changeset viewer.