summaryrefslogtreecommitdiff
path: root/include/thmlhtmlhref.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/thmlhtmlhref.h')
-rw-r--r--include/thmlhtmlhref.h50
1 files changed, 0 insertions, 50 deletions
diff --git a/include/thmlhtmlhref.h b/include/thmlhtmlhref.h
deleted file mode 100644
index e504ae8..0000000
--- a/include/thmlhtmlhref.h
+++ /dev/null
@@ -1,50 +0,0 @@
-/******************************************************************************
- *
- * $Id: thmlhtmlhref.h,v 1.10 2003/12/22 04:28:09 scribe Exp $
- *
- * 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 _THMLHTMLHREF_H
-#define _THMLHTMLHREF_H
-
-#include <swbasicfilter.h>
-#include <utilxml.h>
-
-SWORD_NAMESPACE_START
-
-/** this filter converts ThML text to HTML text with hrefs
- */
-class SWDLLEXPORT ThMLHTMLHREF : public SWBasicFilter {
-protected:
- class MyUserData : public BasicFilterUserData {
- public:
- MyUserData(const SWModule *module, const SWKey *key);//: BasicFilterUserData(module, key) {}
- SWBuf inscriptRef;
- bool SecHead;
- bool BiblicalText;
- SWBuf version;
- XMLTag startTag;
- };
- virtual BasicFilterUserData *createUserData(const SWModule *module, const SWKey *key) {
- return new MyUserData(module, key);
- }
- virtual bool handleToken(SWBuf &buf, const char *token, BasicFilterUserData *userData);
-public:
- ThMLHTMLHREF();
-};
-SWORD_NAMESPACE_END
-#endif /* _THMLHTMLHREF_H */