home *** CD-ROM | disk | FTP | other *** search
-
- #ifndef _ISTRENUM_
- #define _ISTRENUM_
- /*******************************************************************************
- * FILE NAME: istrenum.hpp *
- * *
- * DESCRIPTION: *
- * Declaration of the classes: *
- * IStringEnum *
- * *
- * COPYRIGHT: *
- * IBM Open Class Library *
- * (C) Copyright International Business Machines Corporation 1992, 1996 *
- * Licensed Material - Program-Property of IBM - All Rights Reserved. *
- * US Government Users Restricted Rights - Use, duplication, or disclosure *
- * restricted by GSA ADP Schedule Contract with IBM Corp. *
- * *
- *******************************************************************************/
-
- #pragma pack(4)
-
-
-
- class IStringEnum {
- public:
- /*------------------------- StripMode ----------------------------------------*/
- typedef enum {
- leading,
- trailing,
- both
- } StripMode;
-
- /*------------------------- Character Type -----------------------------------*/
- typedef enum {
- sbcs,
- dbcs1 = 1,
- mbcs1 = 1,
- dbcs2 = 2,
- mbcs2 = 2,
- mbcs3 = 3,
- mbcs4 = 4
- } CharType;
-
-
-
-
- };
-
-
-
- #pragma pack()
-
- #endif // _ISTRENUM_
-
-
-
-