Main Page   Class Hierarchy   Alphabetical List   Compound List   File List   Compound Members  

thmlstrongs.h

00001 /*
00002  *
00003  * $Id:
00004  *
00005  * Copyright 1998 CrossWire Bible Society (http://www.crosswire.org)
00006  *      CrossWire Bible Society
00007  *      P. O. Box 2528
00008  *      Tempe, AZ  85280-2528
00009  *
00010  * This program is free software; you can redistribute it and/or modify it
00011  * under the terms of the GNU General Public License as published by the
00012  * Free Software Foundation version 2.
00013  *
00014  * This program is distributed in the hope that it will be useful, but
00015  * WITHOUT ANY WARRANTY; without even the implied warranty of
00016  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
00017  * General Public License for more details.
00018  *
00019  */
00020 
00021 #ifndef THMLSTRONGS_H
00022 #define THMLSTRONGS_H
00023 
00024 #include <swfilter.h>
00025 
00026 #include <defs.h>
00027 
00030 class SWDLLEXPORT ThMLStrongs:public SWFilter
00031 {
00032   bool option;
00033   static const char on[];
00034   static const char off[];
00035   static const char optName[];
00036   static const char optTip[];
00037   OptionsList options;
00038 public:
00039     ThMLStrongs ();
00040     virtual ~ ThMLStrongs ();
00041   virtual char ProcessText (char *text, int maxlen, const SWKey * key, const SWModule * = 0);
00042   virtual const char *getOptionName ()
00043   {
00044     return optName;
00045   }
00046   virtual const char *getOptionTip ()
00047   {
00048     return optTip;
00049   }
00050   virtual void setOptionValue (const char *ival);
00051   virtual const char *getOptionValue ();
00052   virtual OptionsList getOptionValues ()
00053   {
00054     return options;
00055   }
00056 };
00057 
00058 #endif

Generated at Tue Jan 22 14:52:48 2002 for The Sword Project by doxygen1.2.9.1 written by Dimitri van Heesch, © 1997-2001