home *** CD-ROM | disk | FTP | other *** search
/ Power Programmierung 2 / Power-Programmierung CD 2 (Tewi)(1994).iso / gnu / djgpp / src / libgplus.5 / libgplus / etc / graph / pdefs.h < prev    next >
Encoding:
C/C++ Source or Header  |  1991-06-28  |  219 b   |  10 lines

  1. // -*- C++ -*-
  2. struct point
  3. {
  4.   double x, y;            // x and y coordinates
  5.   char *label;            // label attched to coordinates.
  6.   int symbol;            // index of symbol drawn at corrdinates.
  7. };
  8.  
  9. #define DEFAULT_INITIAL_CAPACITY 1024
  10.