diff options
author | danglassey <danglassey> | 2002-08-14 09:57:17 +0000 |
---|---|---|
committer | danglassey <danglassey> | 2002-08-14 09:57:17 +0000 |
commit | daa67ff1f728c07f2a116ee9a9f4505479ca6808 (patch) | |
tree | c224a537d30480002ae0560cc9104b543b4d1b5e /include/gbfhtmlhref.h | |
parent | 6d6973e035aac5ec1676efccd5b8ada70c40b639 (diff) | |
download | sword-sf-cvs-import-1.1.1.tar.gz |
Initial import from crosswire CVS for syncingimport-1.1.1
Diffstat (limited to 'include/gbfhtmlhref.h')
-rw-r--r-- | include/gbfhtmlhref.h | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/include/gbfhtmlhref.h b/include/gbfhtmlhref.h new file mode 100644 index 0000000..77952a4 --- /dev/null +++ b/include/gbfhtmlhref.h @@ -0,0 +1,33 @@ +/*-************************************************************************* + gbfhtmlhref.h - description + ------------------- + begin : 2001-09-03 + copyright : 2001 by CrossWire Bible Society + ***************************************************************************/ + +/*************************************************************************** + * * + * This program is free software; you can redistribute it and/or modify * + * it under the terms of the GNU General Public License as published by * + * the Free Software Foundation; either version 2 of the License, or * + * (at your option) any later version. * + * * + ***************************************************************************/ + +#ifndef GBFHTMLHREF_H +#define GBFHTMLHREF_H + +#include <swbasicfilter.h> + +#include <defs.h> + +/** this filter converts GBF text to HTML text with hrefs + */ +class SWDLLEXPORT GBFHTMLHREF : public SWBasicFilter { +protected: + virtual bool handleToken(char **buf, const char *token, DualStringMap &userData); +public: + GBFHTMLHREF (); +}; + +#endif |