123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111 |
- #ifndef _GENDER
- #define _GENDER
- #include "unicode/utypes.h"
- #if !UCONFIG_NO_FORMATTING
- #include "unicode/locid.h"
- #include "unicode/ugender.h"
- #include "unicode/uobject.h"
- class GenderInfoTest;
- U_NAMESPACE_BEGIN
- void U_CALLCONV GenderInfo_initCache(UErrorCode &status);
- class U_I18N_API GenderInfo : public UObject {
- public:
-
- static const GenderInfo* U_EXPORT2 getInstance(const Locale& locale, UErrorCode& status);
-
- UGender getListGender(const UGender* genders, int32_t length, UErrorCode& status) const;
-
- virtual ~GenderInfo();
- private:
- int32_t _style;
-
- GenderInfo(const GenderInfo& other);
-
- GenderInfo& operator=(const GenderInfo&);
- GenderInfo();
- static const GenderInfo* getNeutralInstance();
- static const GenderInfo* getMixedNeutralInstance();
- static const GenderInfo* getMaleTaintsInstance();
- static const GenderInfo* loadInstance(const Locale& locale, UErrorCode& status);
- friend class ::GenderInfoTest;
- friend void U_CALLCONV GenderInfo_initCache(UErrorCode &status);
- };
- U_NAMESPACE_END
- #endif
- #endif
|