]> git.saurik.com Git - apple/icu.git/blame - icuSources/i18n/csrecog.cpp
ICU-64260.0.1.tar.gz
[apple/icu.git] / icuSources / i18n / csrecog.cpp
CommitLineData
f3c0d7a5
A
1// © 2016 and later: Unicode, Inc. and others.
2// License & terms of use: http://www.unicode.org/copyright.html
73c04bcf
A
3/*
4 **********************************************************************
5 * Copyright (C) 2005-2006, International Business Machines
6 * Corporation and others. All Rights Reserved.
7 **********************************************************************
8 */
9
10#include "unicode/utypes.h"
11
12#if !UCONFIG_NO_CONVERSION
13
14#include "csrecog.h"
15
16U_NAMESPACE_BEGIN
17
18CharsetRecognizer::~CharsetRecognizer()
19{
20 // nothing to do.
21}
22
23const char *CharsetRecognizer::getLanguage() const
24{
25 return "";
26}
27
28U_NAMESPACE_END
29
30#endif