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

  1. /**********************************************************************
  2. *                                                                     *
  3. *  IBM(R) VisualAge(TM) for C++ for Windows(R), Version 3.5           *
  4. *                                                                     *
  5. *  PID: 5622-880                                                      *
  6. *  - Licensed Material - Program-Property of IBM                      *
  7. *  (C) Copyright IBM Corp. 1991, 1995 - All Right Reserved.           *
  8. *                                                                     *
  9. *  US Government Users Restricted Rights - Use, duplication or        *
  10. *  disclosure restricted by GSA ADP Schedule Contract with IBM Corp.  *
  11. *                                                                     *
  12. *  VisualAge, and IBM are trademarks or registered trademarks of      *
  13. *  International Business Machines Corporation.                       *
  14. *  Windows is a registered trademark of Microsoft Corporation.        *
  15. *                                                                     *
  16. **********************************************************************/
  17.  
  18. #ifndef _IEXCTXT_H
  19. #define _IEXCTXT_H
  20.  
  21. #include <icconst.h>
  22. #include <imsgtext.hpp>
  23.  
  24. #pragma info (nocls, nocnd, nocns, nocnv, noext, nognr, novft)
  25. #pragma pack (4)
  26.  
  27. #pragma SOMAsDefault (off)
  28.  
  29. class ICollectionExceptionText  {
  30. public:
  31.  
  32.            ICollectionExceptionText
  33.                             (unsigned long resourceId);
  34.  
  35.           ~ICollectionExceptionText
  36.                             ();
  37.  
  38.   char const*
  39.            text             () const;
  40.  
  41.            operator char const*
  42.                             () const;
  43.  
  44. protected:
  45.  
  46. private:
  47.  
  48.   IMessageText*
  49.            ivMsgTxt;
  50.  
  51. };
  52.  
  53. #pragma SOMAsDefault (pop)
  54.  
  55. #include <iexctxt.inl>
  56.  
  57. #pragma info (restore)
  58. #pragma pack ()
  59.  
  60. #endif
  61.