scuffed-code/icu4c/source/common/nameprep.cpp
Ram Viswanadha 58a83101b4 ICU-2699 fix compiler warnings
X-SVN-Rev: 12450
2003-06-11 04:59:36 +00:00

39 lines
916 B
C++

/*
*******************************************************************************
*
* Copyright (C) 2003, International Business Machines
* Corporation and others. All Rights Reserved.
*
*******************************************************************************
* file name: nameprep.cpp
* encoding: US-ASCII
* tab size: 8 (not used)
* indentation:4
*
* created on: 2003feb1
* created by: Ram Viswanadha
*/
#include "unicode/utypes.h"
#if !UCONFIG_NO_IDNA
#include "nameprep.h"
// *****************************************************************************
// class NamePrep
// *****************************************************************************
U_NAMESPACE_BEGIN
const char NamePrep::fgClassID=0;
// default constructor
NamePrep::NamePrep(UErrorCode& status){
bidiCheck = TRUE;
doNFKC = TRUE;
}
U_NAMESPACE_END
#endif /* #if !UCONFIG_NO_IDNA */