25 lines
493 B
C++
25 lines
493 B
C++
|
/*
|
||
|
**********************************************************************
|
||
|
* Copyright (C) 2005-2006, International Business Machines
|
||
|
* Corporation and others. All Rights Reserved.
|
||
|
**********************************************************************
|
||
|
*/
|
||
|
|
||
|
#include "unicode/utypes.h"
|
||
|
|
||
|
#include "csrecog.h"
|
||
|
|
||
|
U_NAMESPACE_BEGIN
|
||
|
|
||
|
CharsetRecognizer::~CharsetRecognizer()
|
||
|
{
|
||
|
// nothing to do.
|
||
|
}
|
||
|
|
||
|
const char *CharsetRecognizer::getLanguage() const
|
||
|
{
|
||
|
return "";
|
||
|
}
|
||
|
|
||
|
U_NAMESPACE_END
|