home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 6 / AACD06.ISO / AACD / Programming / ICU / src / icu / source / test / intltest / currcoll.h < prev    next >
Encoding:
C/C++ Source or Header  |  1999-08-16  |  1.5 KB  |  57 lines

  1. /*
  2. *****************************************************************************************
  3. *                                                                                       *
  4. * COPYRIGHT:                                                                            *
  5. *   (C) Copyright Taligent, Inc.,  1997                                                 *
  6. *   (C) Copyright International Business Machines Corporation,  1997-1998               *
  7. *   Licensed Material - Program-Property of IBM - All Rights Reserved.                  *
  8. *   US Government Users Restricted Rights - Use, duplication, or disclosure             *
  9. *   restricted by GSA ADP Schedule Contract with IBM Corp.                              *
  10. *                                                                                       *
  11. *****************************************************************************************
  12. */
  13.  
  14. /**
  15.  * Collation currency tests.
  16.  * (It's important to stay current!)
  17.  */
  18.  
  19. #ifndef _CURRCOLL
  20. #define _CURRCOLL
  21.  
  22. #ifndef _UTYPES
  23. #include "utypes.h"
  24. #endif
  25.  
  26. #ifndef _COLL
  27. #include "coll.h"
  28. #endif
  29.  
  30. #ifndef _COLEITR
  31. #include "coleitr.h"
  32. #endif
  33.  
  34. #ifndef _INTLTEST
  35. #include "intltest.h"
  36. #endif
  37.  
  38. #ifndef _UNISTR
  39. #include "unistr.h"
  40. #endif
  41.  
  42. class CollationCurrencyTest: public IntlTest
  43. {
  44. public:
  45.  
  46.     enum EToken_Len { MAX_TOKEN_LEN = 16 };
  47.  
  48.     CollationCurrencyTest();
  49.     ~CollationCurrencyTest();
  50.  
  51.     void runIndexedTest(int32_t index, bool_t exec, char* &name, char* par = NULL);
  52.  
  53.     void currencyTest(char *par);
  54. };
  55.  
  56. #endif
  57.