// © 2016 and later: Unicode, Inc. and others. // License & terms of use: http://www.unicode.org/copyright.html /* ****************************************************************************** * Copyright (C) 2015, International Business Machines Corporation and * others. All Rights Reserved. ****************************************************************************** * * File pluralmap.h - PluralMap class that maps plural categories to values. ****************************************************************************** */ #ifndef __PLURAL_MAP_H__ #define __PLURAL_MAP_H__ #include "unicode/uobject.h" #include "cmemory.h" U_NAMESPACE_BEGIN class UnicodeString; class U_COMMON_API PluralMapBase : public UMemory { … }; /** * A Map of plural categories to values. It maintains ownership of the * values. * * Type T is the value type. T must provide the following: * 1) Default constructor * 2) Copy constructor * 3) Assignment operator * 4) Must extend UMemory */ template<typename T> class PluralMap : public PluralMapBase { … }; U_NAMESPACE_END #endif