home *** CD-ROM | disk | FTP | other *** search
/ Resource for Source: C/C++ / Resource for Source - C-C++.iso / misc_src / knowhow4 / line.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-11-01  |  278 b   |  17 lines

  1. /*  LINE.H file. Line is the bar and text over this bar
  2.     loc xy is absolute screen coordinates
  3. */
  4.  
  5. #ifndef __LINE_H_
  6. #define __LINE_H_
  7.  
  8. #include "graphpp.h"
  9.  
  10. struct Line
  11.     {
  12.     void outtextxy(loc xy, char* text, int pattern = 0);
  13.     };
  14.  
  15.  
  16. #endif __LINE_H_
  17.