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

unifilt.h

This is the verbatim text of the unifilt.h include file.
/*
* Copyright © {1999}, International Business Machines Corporation and others. All Rights Reserved.
**********************************************************************
*   Date        Name        Description
*   11/17/99    aliu        Creation.
**********************************************************************
*/
#ifndef UNIFILT_H
#define UNIFILT_H

#include "unicode/utypes.h"

class U_I18N_API UnicodeFilter {

public:
    virtual ~UnicodeFilter();

    virtual UBool contains(UChar c) const = 0;

    virtual UnicodeFilter* clone() const = 0;

protected:

    UnicodeFilter();
};

inline UnicodeFilter::UnicodeFilter() {}
inline UnicodeFilter::~UnicodeFilter() {}

#endif

Generated at Wed Aug 16 16:05:54 2000 for ICU1.6 by doxygen 1.0.0 written by Dimitri van Heesch, © 1997-1999