gecko/intl/icu/source/i18n/csrecog.cpp
Norbert Lindenberg 704cddfcbc Bug 724531 - Import ICU library into the mozilla tree. r=dmandelin for importing the ICU sources
--HG--
extra : rebase_source : 2561787b6f9ae3dc626cb6bf76e6f78f6cd15664
2013-03-01 20:58:49 -08:00

29 lines
529 B
C++

/*
**********************************************************************
* 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