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

  1. #ifndef _IEQUALFUNC_
  2. #define _IEQUALFUNC_
  3. /******************************************************************************
  4. * .FILE:        icalceql.hpp                                                  *
  5. *                                                                             *
  6. * .DESCRIPTION: Header file for the class, ICalcEqualFunction                 *
  7. *                                                                             *
  8. * .CLASSES:     ICalcEqualFunction                                            *
  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:   ICalcEqualFunction
  33. //
  34. // Purpose: Describes ICalcEqualFunction
  35. //   Defines the calculator Equal function.
  36. //**************************************************************************  */
  37.  
  38. class IVBSAMP_IMPORT ICalcEqualFunction : public ICalcFunction
  39. {
  40. public:
  41.            ICalcEqualFunction();      //constructor
  42.   virtual  ~ICalcEqualFunction();     //destructor
  43.  
  44. //Implementor Method Functions
  45.  
  46. ICalcEqualFunction & perform(ICalcPU& aPU);
  47. };
  48.  
  49. #endif
  50.