os/textandloc/fontservices/textshaperplugin/IcuSource/layout/NonContextualGlyphSubstProc.h
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/textandloc/fontservices/textshaperplugin/IcuSource/layout/NonContextualGlyphSubstProc.h Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,43 @@
1.4 +/*
1.5 + *
1.6 + * (C) Copyright IBM Corp. 1998-2004 - All Rights Reserved
1.7 + *
1.8 + */
1.9 +
1.10 +#ifndef __NONCONTEXTUALGLYPHSUBSTITUTIONPROCESSOR_H
1.11 +#define __NONCONTEXTUALGLYPHSUBSTITUTIONPROCESSOR_H
1.12 +
1.13 +/**
1.14 + * \file
1.15 + * \internal
1.16 + */
1.17 +
1.18 +#include "LETypes.h"
1.19 +#include "MorphTables.h"
1.20 +#include "SubtableProcessor.h"
1.21 +#include "NonContextualGlyphSubst.h"
1.22 +
1.23 +U_NAMESPACE_BEGIN
1.24 +
1.25 +class LEGlyphStorage;
1.26 +
1.27 +class NonContextualGlyphSubstitutionProcessor : public SubtableProcessor
1.28 +{
1.29 +public:
1.30 + virtual void process(LEGlyphStorage &glyphStorage) = 0;
1.31 +
1.32 + static SubtableProcessor *createInstance(const MorphSubtableHeader *morphSubtableHeader);
1.33 +
1.34 +protected:
1.35 + NonContextualGlyphSubstitutionProcessor();
1.36 + NonContextualGlyphSubstitutionProcessor(const MorphSubtableHeader *morphSubtableHeader);
1.37 +
1.38 + virtual ~NonContextualGlyphSubstitutionProcessor();
1.39 +
1.40 +private:
1.41 + NonContextualGlyphSubstitutionProcessor(const NonContextualGlyphSubstitutionProcessor &other); // forbid copying of this class
1.42 + NonContextualGlyphSubstitutionProcessor &operator=(const NonContextualGlyphSubstitutionProcessor &other); // forbid copying of this class
1.43 +};
1.44 +
1.45 +U_NAMESPACE_END
1.46 +#endif