home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / ool_main.zip / ool / include / xmessage.h < prev    next >
C/C++ Source or Header  |  1997-08-12  |  1KB  |  28 lines

  1. #ifndef __OOL_XMESSAGE_H__
  2. #define __OOL_XMESSAGE_H__
  3.  
  4. /*===========================================================================*/
  5. /* OOL ------------------- the Open Object Library ------------------- r 1.0 */
  6. /*===========================================================================*/
  7. /*                              class: XMessage                              */
  8. /*                       derived from: XObject                               */
  9. /*                        last update: 05/97                                 */
  10. /*                      programmed by: Thomas Bonk (thomas@ghecko.saar.de)   */
  11. /*===========================================================================*/
  12.  
  13. #include "xobject.h"
  14. #include "xstring.h"
  15.  
  16. class _export_ XMessage : public XObject
  17. {
  18.         private:
  19.                 XString strFilename;
  20.  
  21.         public:
  22.                      XMessage( const char* fileName ) : strFilename( fileName ) {}
  23.                 BOOL GetMessage( XString* pstrMsg, ULONG msgNum, ULONG varNum = 0, const char** varTexts = NULL );
  24. };
  25.  
  26. #endif
  27.  
  28.