ICU 62.1 62.1
ugender.h
Go to the documentation of this file.
1// © 2016 and later: Unicode, Inc. and others.
2// License & terms of use: http://www.unicode.org/copyright.html
3/*
4*****************************************************************************************
5* Copyright (C) 2010-2013, International Business Machines
6* Corporation and others. All Rights Reserved.
7*****************************************************************************************
8*/
9
10#ifndef UGENDER_H
11#define UGENDER_H
12
13#include "unicode/utypes.h"
14
15#if !UCONFIG_NO_FORMATTING
16
18
50typedef enum UGender UGender;
51
56struct UGenderInfo;
57typedef struct UGenderInfo UGenderInfo;
58
66U_STABLE const UGenderInfo* U_EXPORT2
67ugender_getInstance(const char *locale, UErrorCode *status);
68
69
79U_STABLE UGender U_EXPORT2
80ugender_getListGender(const UGenderInfo* genderinfo, const UGender *genders, int32_t size, UErrorCode *status);
81
82#endif /* #if !UCONFIG_NO_FORMATTING */
83
84#endif
C++ API: "Smart pointers" for use with and in ICU4C C++ code.
UGender
Genders.
Definition ugender.h:30
@ UGENDER_FEMALE
Female gender.
Definition ugender.h:40
@ UGENDER_MALE
Male gender.
Definition ugender.h:35
@ UGENDER_OTHER
Neutral gender.
Definition ugender.h:45
UGender ugender_getListGender(const UGenderInfo *genderinfo, const UGender *genders, int32_t size, UErrorCode *status)
Given a list, returns the gender of the list as a whole.
const UGenderInfo * ugender_getInstance(const char *locale, UErrorCode *status)
Opens a new UGenderInfo object given locale.
#define U_STABLE
This is used to declare a function as a stable public ICU C API.
Definition umachine.h:111
Basic definitions for ICU, for both C and C++ APIs.
UErrorCode
Error code to replace exception handling, so that the code is compatible with all C++ compilers,...
Definition utypes.h:396