home *** CD-ROM | disk | FTP | other *** search
/ POINT Software Programming / PPROG1.ISO / c / fli106c / blcls.cpp < prev    next >
C/C++ Source or Header  |  1992-03-11  |  930b  |  46 lines

  1. //
  2. // The Fusion Library Interface for DOS
  3. // Version 1.06c
  4. // Copyright (C) 1990, 1991, 1992
  5. // Software Dimensions
  6. //
  7. // BlazeClass
  8. //
  9.  
  10. #include "fli.h"
  11.  
  12. #ifdef __BCPLUSPLUS__
  13. #pragma hdrstop
  14. #endif
  15.  
  16. //-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
  17. //
  18. // - operator
  19. //
  20. // Clear the entire display
  21. //
  22. //-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
  23.  
  24. BlazeClass& BlazeClass::operator- ()
  25. {
  26.   BlazeClass Blaze;
  27.   Blaze.EraseArea(0,0,ScreenWidth,ScreenHeight,7);
  28.   return *this;
  29. }
  30.  
  31. //-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
  32. //
  33. // -- operator
  34. //
  35. // Clear only the current text window
  36. //
  37. //-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-
  38.  
  39. BlazeClass& BlazeClass::operator-- ()
  40. {
  41.   BlazeClass Blaze;
  42.   Blaze.EraseArea(WinX,WinY,WinWide,WinHigh,7);
  43.   return *this;
  44. }
  45.  
  46.