Wed, 31 Dec 2014 06:09:35 +0100
Cloned upstream origin tor-browser at tor-browser-31.3.0esr-4.5-1-build1
revision ID fc1c9ff7c1b2defdbc039f12214767608f46423f for hacking purpose.
1 /*
2 **********************************************************************
3 * Copyright (C) 2005-2006, International Business Machines
4 * Corporation and others. All Rights Reserved.
5 **********************************************************************
6 */
8 #include "unicode/utypes.h"
10 #if !UCONFIG_NO_CONVERSION
12 #include "csrecog.h"
14 U_NAMESPACE_BEGIN
16 CharsetRecognizer::~CharsetRecognizer()
17 {
18 // nothing to do.
19 }
21 const char *CharsetRecognizer::getLanguage() const
22 {
23 return "";
24 }
26 U_NAMESPACE_END
28 #endif