summaryrefslogtreecommitdiff
path: root/include/markupfiltmgr.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/markupfiltmgr.h')
-rw-r--r--include/markupfiltmgr.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/include/markupfiltmgr.h b/include/markupfiltmgr.h
index 7c9c3c5..cfb90b2 100644
--- a/include/markupfiltmgr.h
+++ b/include/markupfiltmgr.h
@@ -24,10 +24,12 @@
#include <encfiltmgr.h>
-/** This class is like a normal @ref SWEncodingMgr,
- * but you can additonally specify which markup
- * you want to use.
- */
+SWORD_NAMESPACE_START
+
+/** This class is like a normal SWEncodingMgr,
+* but you can additonally specify which markup
+* you want to use.
+*/
class SWDLLEXPORT MarkupFilterMgr : public EncodingFilterMgr {
protected:
SWFilter* fromthml;
@@ -35,18 +37,15 @@ protected:
SWFilter* fromplain;
SWFilter* fromosis;
- /*
- * current markup value
- */
+ /**
+ * current markup value
+ */
char markup;
void CreateFilters(char markup);
public:
/** Constructor of SWMarkupMgr.
*
- * @param iconfig
- * @param isysconfig
- * @param autoload If this bool is true the constructor starts loading the installed modules. If you reimplemented SWMgr you can set autoload=false to load the modules with your own reimplemented function.
* @param encoding The desired encoding.
* @param markup The desired markup format.
*/
@@ -72,4 +71,5 @@ public:
virtual void AddRenderFilters(SWModule *module, ConfigEntMap &section);
};
+SWORD_NAMESPACE_END
#endif