=====================================
   conbuf class summary (CONSTREA.H)  
 =====================================
 Derived From:  None
 Base For:      None

Specializes streambuf to handle console output.

 Constructors:
  conbuf::conbuf();

 Member Functions:
  conbuf::clreol        
  conbuf::clrscr        
  conbuf::delline       
  conbuf::gotoxy        
  conbuf::highvideo     
  conbuf::insline       
  conbuf::lowvideo      
  conbuf::normvideo     
  conbuf::overflow      
  conbuf::setcursortype 
  conbuf::textattr      
  conbuf::textbackground
  conbuf::textcolor     
  conbuf::textmode      
  conbuf::wherex        
  conbuf::wherey        
  conbuf::window        


conbuf::conbuf (constructor) ============================== Declaration: conbuf::conbuf(); Remarks: Makes an unattached conbuf. See Also: conbuf
conbuf::overflow (member function) ==================================== Declaration: virtual int overflow(int = EOF); Remarks: Flushes the conbuf to its destination. See Also: conbuf
============================================ constream class summary (CONSTREA.H) ============================================ Derived From: ostream Base For: None The class constream provides the functionality of CONIO.H for use with C++ streams. It allows you to create output streams that write to specified windows on the screen, in specified colors, and at specific locations. As with CONIO.H functions, constreams are not compatible with Windows. The window area created by constream is not bordered or otherwise distinguished from the surrounding screen. You can create multiple constreams, each writing to its own portion of the screen. Then, you can output to any them without having to reset the window each time. Constructors: constream(); Member Functions: constream::clrscr constream::rdbuf constream::textmode constream::window
constream::constream (constructor) ==================================== Declaration: constream(); Remarks: Provides an unattached output stream to the console. See Also: constream
constream::rdbuf (member function) ==================================== Declaration: conbuf *rdbuf(); Remarks: Returns a pointer to this constream's assigned conbuf. See Also: constream