mirror of https://github.com/lukechilds/node.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
525 B
28 lines
525 B
/*
|
|
**********************************************************************
|
|
* 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
|
|
|