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 #include <defs.h>
00027
00028 SWORD_NAMESPACE_START
00029
00032 class SWDLLEXPORT ThMLLemma:public SWFilter
00033 {
00034 bool option;
00035 static const char on[];
00036 static const char off[];
00037 static const char optName[];
00038 static const char optTip[];
00039 OptionsList options;
00040 public:
00041 ThMLLemma ();
00042 virtual ~ ThMLLemma ();
00043 virtual char ProcessText (char *text, int maxlen, const SWKey * key, const SWModule * = 0);
00044 virtual const char *getOptionName ()
00045 {
00046 return optName;
00047 }
00048 virtual const char *getOptionTip ()
00049 {
00050 return optTip;
00051 }
00052 virtual void setOptionValue (const char *ival);
00053 virtual const char *getOptionValue ();
00054 virtual OptionsList getOptionValues ()
00055 {
00056 return options;
00057 }
00058 };
00059 SWORD_NAMESPACE_END
00060 #endif