]> git.saurik.com Git - apple/icu.git/blame - icuSources/i18n/shareddateformatsymbols.h
ICU-62107.0.1.tar.gz
[apple/icu.git] / icuSources / i18n / shareddateformatsymbols.h
CommitLineData
f3c0d7a5
A
1// © 2016 and later: Unicode, Inc. and others.
2// License & terms of use: http://www.unicode.org/copyright.html
b331163b
A
3/*
4******************************************************************************
5* Copyright (C) 2014, International Business Machines
6* Corporation and others. All Rights Reserved.
7******************************************************************************
8* shareddateformatsymbols.h
9*/
10
11#ifndef __SHARED_DATEFORMATSYMBOLS_H__
12#define __SHARED_DATEFORMATSYMBOLS_H__
13
14#include "unicode/utypes.h"
15#include "sharedobject.h"
16#include "unicode/dtfmtsym.h"
17
18U_NAMESPACE_BEGIN
19
20
21class U_I18N_API SharedDateFormatSymbols : public SharedObject {
22public:
23 SharedDateFormatSymbols(
24 const Locale &loc, const char *type, UErrorCode &status)
25 : dfs(loc, type, status) { }
26 virtual ~SharedDateFormatSymbols();
27 const DateFormatSymbols &get() const { return dfs; }
28private:
29 DateFormatSymbols dfs;
30 SharedDateFormatSymbols(const SharedDateFormatSymbols &);
31 SharedDateFormatSymbols &operator=(const SharedDateFormatSymbols &);
32};
33
34U_NAMESPACE_END
35
36#endif