Main Page   Class Hierarchy   Compound List   File List   Header Files   Sources   Compound Members   File Members  

nultrans.h

This is the verbatim text of the nultrans.h include file.
/*
**********************************************************************
*   Copyright (c) 2000, International Business Machines
*   Corporation and others.  All Rights Reserved.
**********************************************************************
*   Date        Name        Description
*   01/11/2000  aliu        Creation.
**********************************************************************
*/
#ifndef NULTRANS_H
#define NULTRANS_H

#include "unicode/translit.h"

class U_I18N_API NullTransliterator : public Transliterator {

    static const char* _ID;

public:

    NullTransliterator();

    virtual ~NullTransliterator();

    Transliterator* clone(void) const;

    virtual int32_t transliterate(Replaceable &text,
                                  int32_t start, int32_t limit) const;

    virtual void handleTransliterate(Replaceable& text, Position& offset,
                                     UBool isIncremental) const;
};

inline NullTransliterator::NullTransliterator() : Transliterator(_ID, 0) {}

inline NullTransliterator::~NullTransliterator() {}

#endif

Generated at Mon Jun 5 12:53:19 2000 for ICU1.5 by doxygen 1.0.0 written by Dimitri van Heesch, © 1997-1999