diff options
author | danglassey <danglassey> | 2002-08-14 09:57:17 +0000 |
---|---|---|
committer | danglassey <danglassey> | 2002-08-14 09:57:17 +0000 |
commit | c9458897ebbb739d8db83c80e06512d8a612f743 (patch) | |
tree | f8c5381045887e34388cc6b26cfccc254bf766dc /include/utf8html.h | |
download | sword-sf-cvs-c9458897ebbb739d8db83c80e06512d8a612f743.tar.gz |
*** empty log message ***
Diffstat (limited to 'include/utf8html.h')
-rw-r--r-- | include/utf8html.h | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/include/utf8html.h b/include/utf8html.h new file mode 100644 index 0000000..f292efe --- /dev/null +++ b/include/utf8html.h @@ -0,0 +1,35 @@ +/* + * + * + * Copyright 1998 CrossWire Bible Society (http://www.crosswire.org) + * CrossWire Bible Society + * P. O. Box 2528 + * Tempe, AZ 85280-2528 + * + * 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 version 2. + * + * This program is distributed in the hope that it will be useful, but + * WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + * General Public License for more details. + * + */ + +#ifndef UTF8HTML_H +#define UTF8HTML_H + +#include <swfilter.h> + +#include <defs.h> + + /** This filter converts UTF-8 text into HTML escape sequences + */ +class SWDLLEXPORT UTF8HTML:public SWFilter { +public: + UTF8HTML(); + virtual char ProcessText (char *text, int maxlen, const SWKey *key, const SWModule * = 0); +}; + +#endif |