home *** CD-ROM | disk | FTP | other *** search
/ Power GUI Programming with VisualAge C++ / powergui.iso / trialva / ibmcppw / include / ivbmnstr.hpp < prev    next >
Encoding:
C/C++ Source or Header  |  1996-02-22  |  2.5 KB  |  62 lines

  1. #ifndef _IVBMNSTR_
  2. #define _IVBMNSTR_
  3. /*******************************************************************************
  4. * FILE NAME: ivbmnstr.hpp                                                      *
  5. *                                                                              *
  6. * DESCRIPTION:                                                                 *
  7. *   This file contains the declaration(s) of the class(es):                    *
  8. *     IVBMnemonicString                                                        *
  9. *                                                                              *
  10. * COPYRIGHT:                                                                   *
  11. *   IBM(R) VisualAge(TM) for C++                                               *
  12. *   (C) Copyright International Business Machines Corporation 1991, 1996       *
  13. *   Licensed Material - Program-Property of IBM - All Rights Reserved.         *
  14. *   US Government Users Restricted Rights - Use, duplication, or disclosure    *
  15. *   restricted by GSA ADP Schedule Contract with IBM Corp.                     *
  16. *                                                                              *
  17. *   This program will not run in DOS mode.                                     *
  18. *                                                                              *
  19. *******************************************************************************/
  20.  
  21. /*-------------------------- Pragma Library Support --------------------------*/
  22. #ifndef __NO_DEFAULT_LIBS__
  23.   #ifdef __OS2__
  24.     #ifdef __IMPORTLIB__
  25.        #pragma library("CPPOOV3I.LIB")
  26.     #else
  27.        #pragma library("CPPOOV3.LIB")
  28.     #endif
  29.   #endif
  30.   #ifdef __WINDOWS__
  31.     #ifdef __IMPORTLIB__
  32.        #pragma library("CPPWOV3I.LIB")
  33.     #else
  34.        #pragma library("CPPWOV3.LIB")
  35.     #endif
  36.   #endif
  37. #endif
  38.  
  39. /*----------------------------------------------------------------------------*/
  40. /* Align classes on four byte boundary.                                       */
  41. /*----------------------------------------------------------------------------*/
  42. #pragma pack(4)
  43.  
  44. class IString;
  45.  
  46. class IVBMnemonicString
  47. {
  48. public:
  49.  
  50. static IString
  51.   translateMnemonic(const IString& istring),
  52.   translateMnemonic(const char *string);
  53.  
  54. } ;
  55.  
  56. /*----------------------------------------------------------------------------*/
  57. /* Resume compiler default packing.                                           */
  58. /*----------------------------------------------------------------------------*/
  59. #pragma pack()
  60.  
  61. #endif
  62.