blob: 31fce5dd012f523aec270f85065ac2c25701b5c9 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
// © 2016 and later: Unicode, Inc. and others.
// License & terms of use: http://www.unicode.org/copyright.html
/*
**********************************************************************
* Copyright (C) 2005-2006, International Business Machines
* Corporation and others. All Rights Reserved.
**********************************************************************
*/
#include "unicode/utypes.h"
#if !UCONFIG_NO_CONVERSION
#include "csrecog.h"
U_NAMESPACE_BEGIN
CharsetRecognizer::~CharsetRecognizer()
{
// nothing to do.
}
const char *CharsetRecognizer::getLanguage() const
{
return "";
}
U_NAMESPACE_END
#endif
|