summaryrefslogtreecommitdiff
path: root/include/encfiltmgr.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/encfiltmgr.h')
-rw-r--r--include/encfiltmgr.h9
1 files changed, 4 insertions, 5 deletions
diff --git a/include/encfiltmgr.h b/include/encfiltmgr.h
index f082b98..2bdf4b6 100644
--- a/include/encfiltmgr.h
+++ b/include/encfiltmgr.h
@@ -24,8 +24,9 @@
#include <swfiltermgr.h>
+SWORD_NAMESPACE_START
-/** This class is like a normal @ref SWMgr,
+/** This class is like a normal SWMgr,
* but you can additonally specify which encoding
* you want to use.
*/
@@ -48,9 +49,6 @@ public:
/** Constructor of SWEncodingMgr.
*
- * @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.
*/
EncodingFilterMgr (char encoding = ENC_UTF8);
@@ -62,7 +60,7 @@ public:
/** Markup sets/gets the encoding after initialization
*
- * @param m The new encoding or ENC_UNKNOWN if you just want to get the current markup.
+ * @param enc The new encoding or ENC_UNKNOWN if you just want to get the current markup.
* @return The current (possibly changed) encoding format.
*/
char Encoding(char enc);
@@ -82,4 +80,5 @@ public:
virtual void AddEncodingFilters(SWModule *module, ConfigEntMap &section);
};
+SWORD_NAMESPACE_END
#endif