2 ******************************************************************************
3 * Copyright (C) 2014, International Business Machines
4 * Corporation and others. All Rights Reserved.
5 ******************************************************************************
6 * shareddateformatsymbols.h
9 #ifndef __SHARED_DATEFORMATSYMBOLS_H__
10 #define __SHARED_DATEFORMATSYMBOLS_H__
12 #include "unicode/utypes.h"
13 #include "sharedobject.h"
14 #include "unicode/dtfmtsym.h"
19 class U_I18N_API SharedDateFormatSymbols
: public SharedObject
{
21 SharedDateFormatSymbols(
22 const Locale
&loc
, const char *type
, UErrorCode
&status
)
23 : dfs(loc
, type
, status
) { }
24 virtual ~SharedDateFormatSymbols();
25 const DateFormatSymbols
&get() const { return dfs
; }
27 DateFormatSymbols dfs
;
28 SharedDateFormatSymbols(const SharedDateFormatSymbols
&);
29 SharedDateFormatSymbols
&operator=(const SharedDateFormatSymbols
&);