00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021 #ifndef THMLLEMMA_H
00022 #define THMLLEMMA_H
00023
00024 #include <swfilter.h>
00025
00026 SWORD_NAMESPACE_START
00027
00030 class SWDLLEXPORT ThMLLemma : public SWFilter {
00031 bool option;
00032 static const char on[];
00033 static const char off[];
00034 static const char optName[];
00035 static const char optTip[];
00036 OptionsList options;
00037 public:
00038 ThMLLemma();
00039 virtual ~ThMLLemma();
00040 virtual char processText(SWBuf &text, const SWKey *key = 0, const SWModule *module = 0);
00041 virtual const char *getOptionName() { return optName; }
00042 virtual const char *getOptionTip() { return optTip; }
00043 virtual void setOptionValue(const char *ival);
00044 virtual const char *getOptionValue();
00045 virtual OptionsList getOptionValues() { return options; }
00046 };
00047
00048 SWORD_NAMESPACE_END
00049 #endif