ICU 57.1 57.1
udateintervalformat.h
Go to the documentation of this file.
1/*
2*****************************************************************************************
3* Copyright (C) 2010-2012,2015 International Business Machines
4* Corporation and others. All Rights Reserved.
5*****************************************************************************************
6*/
7
8#ifndef UDATEINTERVALFORMAT_H
9#define UDATEINTERVALFORMAT_H
10
11#include "unicode/utypes.h"
12
13#if !UCONFIG_NO_FORMATTING
14
15#include "unicode/umisc.h"
17
74
81
107udtitvfmt_open(const char* locale,
108 const UChar* skeleton,
109 int32_t skeletonLength,
110 const UChar* tzID,
111 int32_t tzIDLength,
112 UErrorCode* status);
113
120U_STABLE void U_EXPORT2
122
123
124#if U_SHOW_CPLUSPLUS_API
125
127
138
140
141#endif
142
143
173U_STABLE int32_t U_EXPORT2
175 UDate fromDate,
176 UDate toDate,
177 UChar* result,
178 int32_t resultCapacity,
179 UFieldPosition* position,
180 UErrorCode* status);
181
182#endif /* #if !UCONFIG_NO_FORMATTING */
183
184#endif
"Smart pointer" class, closes a UDateIntervalFormat via udtitvfmt_close().
C++ API: "Smart pointers" for use with and in ICU4C C++ code.
#define U_DEFINE_LOCAL_OPEN_POINTER(LocalPointerClassName, Type, closeFunction)
"Smart pointer" definition macro, deletes objects via the closeFunction.
A struct representing a range of text containing a specific field.
Definition umisc.h:32
UDateIntervalFormat * udtitvfmt_open(const char *locale, const UChar *skeleton, int32_t skeletonLength, const UChar *tzID, int32_t tzIDLength, UErrorCode *status)
Open a new UDateIntervalFormat object using the predefined rules for a given locale plus a specified ...
struct UDateIntervalFormat UDateIntervalFormat
C typedef for struct UDateIntervalFormat.
int32_t udtitvfmt_format(const UDateIntervalFormat *formatter, UDate fromDate, UDate toDate, UChar *result, int32_t resultCapacity, UFieldPosition *position, UErrorCode *status)
Formats a date/time range using the conventions established for the UDateIntervalFormat object.
void udtitvfmt_close(UDateIntervalFormat *formatter)
Close a UDateIntervalFormat object.
uint16_t UChar
Define UChar to be UCHAR_TYPE, if that is #defined (for example, to char16_t), or wchar_t if that is ...
Definition umachine.h:312
#define U_STABLE
This is used to declare a function as a stable public ICU C API.
Definition umachine.h:109
C API:misc definitions.
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:476
double UDate
Date and Time data type.
Definition utypes.h:201
#define U_NAMESPACE_END
This is used to end a declaration of a public ICU C++ API.
Definition uversion.h:130
#define U_NAMESPACE_BEGIN
This is used to begin a declaration of a public ICU C++ API.
Definition uversion.h:129