home *** CD-ROM | disk | FTP | other *** search
/ The Fred Fish Collection 1.5 / ffcollection-1-5-1992-11.iso / ff_progs / libs / plotlib.lha / Plot_1.lzh / Header / DebugL2.h < prev    next >
Encoding:
C/C++ Source or Header  |  1990-02-02  |  2.2 KB  |  71 lines

  1. #ifndef DEBUGL2_H
  2. #define DEBUGL2_H
  3.  
  4. /****************************************************************
  5. *                                                                                                                                *
  6. *     Filename : DebugL2.h                                                                                    *
  7. *                                                                                                                                *
  8. *****************************************************************
  9. *                                                                                                                                *
  10. *        Comment : Includedatei für Debugfunktionen Level 2                    *
  11. *                            Diese Funktionen helfen dem Programmierer die            *
  12. *                            geladenen Daten der Plotlibrary anzuschauen. Es        *
  13. *                            kann bei einer Implementation auf einen neuen            *
  14. *                            Rechner die Darstellung kontrolliert werden.            *
  15. *                            Diese Funktionen sollten nur während dieser                *
  16. *                            Implementationsphase verwendet werden, da sie            *
  17. *                            sehr gross sind und normalerweise auch nicht            *
  18. *                            benötigt werden.                                                                    *
  19. *                                                                                                                                *
  20. *                Rev : V1.0                                                                                            *
  21. *                                                                                                                                *
  22. *        History : V1.0 erstellen dieses Files                            15/11/89    *
  23. *                                                                                                                                *
  24. *                Doc : Plotlibrary User's Guide                                                    *
  25. *                                                                                                                                *
  26. *             Bugs : keine bekannten                                                                        *
  27. *                                                                                                                                *
  28. *            Autor : Oesch Silvano                                                                            *
  29. *                                                                                                                                *
  30. *            Datum : 10/12/89                                                                                    *
  31. *                                                                                                                                *
  32. ****************************************************************/
  33.  
  34. /****************************************************************
  35. *                                                                                                                                *
  36. *    Plotlibrary Includefiles                                                                            *
  37. *                                                                                                                                *
  38. ****************************************************************/
  39.  
  40. #ifndef PLOT_H
  41. #define LISTL2_H
  42. #define PLERROR_H
  43. #include <plot/plot.h>
  44. #endif
  45.  
  46. /****************************************************************
  47. *                                                                                                                                *
  48. *    Definition der Funktionsparameter                                                            *
  49. *                                                                                                                                *
  50. ****************************************************************/
  51.  
  52. #if PROTOTYPEN
  53.  
  54. void displaydata(int );
  55. void displaycurve(int );
  56. void dispdata(struct Curve *);
  57. void dispplot(void);
  58. void dispcurve(struct Curve *);
  59.  
  60. #else
  61.  
  62. void displaydata();
  63. void displaycurve();
  64. void dispdata();
  65. void dispplot();
  66. void dispcurve();
  67.  
  68. #endif
  69.  
  70. #endif
  71.