chromium/third_party/icu/source/i18n/inputext.cpp

// © 2016 and later: Unicode, Inc. and others.
// License & terms of use: http://www.unicode.org/copyright.html
/*
 **********************************************************************
 *   Copyright (C) 2005-2016, International Business Machines
 *   Corporation and others.  All Rights Reserved.
 **********************************************************************
 */

#include "unicode/utypes.h"

#if !UCONFIG_NO_CONVERSION

#include "inputext.h"

#include "cmemory.h"
#include "cstring.h"

#include <string.h>

U_NAMESPACE_BEGIN

#define BUFFER_SIZE

#define NEW_ARRAY(type,count)
#define DELETE_ARRAY(array)

InputText::InputText(UErrorCode &status)
    :{}

InputText::~InputText()
{}

void InputText::setText(const char *in, int32_t len)
{}

void InputText::setDeclaredEncoding(const char* encoding, int32_t len)
{}

UBool InputText::isSet() const 
{}

/**
*  MungeInput - after getting a set of raw input data to be analyzed, preprocess
*               it by removing what appears to be html markup.
* 
* @internal
*/
void InputText::MungeInput(UBool fStripTags) {}

U_NAMESPACE_END
#endif