// © 2016 and later: Unicode, Inc. and others. // License & terms of use: http://www.unicode.org/copyright.html /* ****************************************************************************** * Copyright (C) 1997-2012, International Business Machines * Corporation and others. All Rights Reserved. ****************************************************************************** * file name: nfrlist.h * encoding: UTF-8 * tab size: 8 (not used) * indentation:4 * * Modification history * Date Name Comments * 10/11/2001 Doug Ported from ICU4J */ #ifndef NFRLIST_H #define NFRLIST_H #include "unicode/rbnf.h" #if U_HAVE_RBNF #include "unicode/uobject.h" #include "nfrule.h" #include "cmemory.h" U_NAMESPACE_BEGIN // unsafe class for internal use only. assume memory allocations succeed, indexes are valid. // should be a template, but we can't use them class NFRuleList : public UMemory { … }; U_NAMESPACE_END /* U_HAVE_RBNF */ #endif // NFRLIST_H #endif