home *** CD-ROM | disk | FTP | other *** search
/ Power GUI Programming with VisualAge C++ / powergui.iso / trialva / ibmcppw / samples / visbuild / calculat / cppwv13 / icalcclr.hpp < prev    next >
Encoding:
C/C++ Source or Header  |  1996-02-16  |  2.5 KB  |  51 lines

  1. #ifndef _ICLEARFUNC_
  2. #define _ICLEARFUNC_
  3. /******************************************************************************
  4. * .FILE:        icalcclr.hpp                                                  *
  5. *                                                                             *
  6. * .DESCRIPTION: Header file for the class, ICalcClearFunction                 *
  7. *                                                                             *
  8. * .CLASSES:     ICalcClearFunction                                            *
  9. *                                                                             *
  10. * .COPYRIGHT:                                                                 *
  11. *    Licensed Material - Program-Property of IBM                              *
  12. *    (C) Copyright IBM Corp. 1992, 1996 - All Rights Reserved                 *
  13. *                                                                             *
  14. * .DISCLAIMER:                                                                *
  15. *   The following [enclosed] code is sample code created by IBM               *
  16. *   Corporation.  This sample code is not part of any standard IBM product    *
  17. *   and is provided to you solely for the purpose of assisting you in the     *
  18. *   development of your applications.  The code is provided 'AS IS',          *
  19. *   without warranty of any kind.  IBM shall not be liable for any damages    *
  20. *   arising out of your use of the sample code, even if they have been        *
  21. *   advised of the possibility of such damages.                               *
  22. *                                                                             *
  23. * .NOTE: WE RECOMMEND USING A FIXED SPACE FONT TO LOOK AT THE SOURCE          *
  24. *                                                                             *
  25. ******************************************************************************/
  26.  
  27. #include <istring.hpp>
  28. #include "ivbsamps.h"
  29. #include "icalcfnc.hpp"
  30.  
  31. //**************************************************************************
  32. // Class:   ICalcClearFunction
  33. //
  34. // Purpose: Describes ICalcClearFunction
  35. //   Defines the calculator Clear All function.
  36. //***************************************************************************
  37.  
  38. class IVBSAMP_IMPORT ICalcClearFunction : public ICalcFunction
  39. {
  40. public:
  41.            ICalcClearFunction();      //constructor
  42.   virtual  ~ICalcClearFunction();     //destructor
  43.  
  44. //Implementor Method Functions
  45.  
  46. ICalcClearFunction & perform(ICalcPU& aPUObject);
  47.  
  48. };
  49.  
  50. #endif
  51.