home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 12 / Cream of the Crop 12 (Part II) / Cream of the Crop 12 (Part II).iso / OS2 / VD08SMP.ZIP / usr / samples / gnuplot / controller.h next >
Encoding:
C/C++ Source or Header  |  1996-02-13  |  203 b   |  19 lines

  1. #ifndef _CONTROLLER_H_
  2. #define _CONTROLLER_H_
  3.  
  4. #include <pm/pm.h>
  5. #include <stdio.h>
  6.  
  7. @interface Controller : Object
  8. {
  9.   FILE *gnuplot;
  10. }
  11.  
  12. - init;
  13. - free;
  14. - plot: sender;
  15.  
  16. @end
  17.  
  18. #endif
  19.