/*
*******************************************************************************
-* Copyright (C) 2012, International Business Machines
+* Copyright (C) 2013, International Business Machines
* Corporation and others. All Rights Reserved.
*******************************************************************************
* dictionarydata.h
class U_COMMON_API DictionaryData : public UMemory {
public:
- static const int32_t TRIE_TYPE_BYTES = 0;
- static const int32_t TRIE_TYPE_UCHARS = 1;
- static const int32_t TRIE_TYPE_MASK = 7;
- static const int32_t TRIE_HAS_VALUES = 8;
-
- static const int32_t TRANSFORM_NONE = 0;
- static const int32_t TRANSFORM_TYPE_OFFSET = 0x1000000;
- static const int32_t TRANSFORM_TYPE_MASK = 0x7f000000;
- static const int32_t TRANSFORM_OFFSET_MASK = 0x1fffff;
+ static const int32_t TRIE_TYPE_BYTES; // = 0;
+ static const int32_t TRIE_TYPE_UCHARS; // = 1;
+ static const int32_t TRIE_TYPE_MASK; // = 7;
+ static const int32_t TRIE_HAS_VALUES; // = 8;
+
+ static const int32_t TRANSFORM_NONE; // = 0;
+ static const int32_t TRANSFORM_TYPE_OFFSET; // = 0x1000000;
+ static const int32_t TRANSFORM_TYPE_MASK; // = 0x7f000000;
+ static const int32_t TRANSFORM_OFFSET_MASK; // = 0x1fffff;
enum {
// Byte offsets from the start of the data, after the generic header.