home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / VSCPPv8.zip / VACPP / IBMCPP / samples / VISBUILD / CALCULAT / CPPOV13 / ICALCCLR.HPP < prev    next >
Text File  |  1995-04-14  |  2KB  |  46 lines

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