summaryrefslogtreecommitdiff
path: root/include/svtools/rtfout.hxx
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2016-10-07 18:27:43 +0200
committerStephan Bergmann <sbergman@redhat.com>2016-10-07 18:27:43 +0200
commite738e79d21c8f48784602efdd915aed3ef2a7c2d (patch)
treec9e7bb3a0cddbcef8b3bb45d2c62aa5877b34c7b /include/svtools/rtfout.hxx
parent5c2894222beed4b30c6be0379cade228c42c5610 (diff)
Clean up RTFOutFuncs interface
Change-Id: I934f2375474035504b4ba9612af4f45a7d05ce9b
Diffstat (limited to 'include/svtools/rtfout.hxx')
-rw-r--r--include/svtools/rtfout.hxx20
1 files changed, 7 insertions, 13 deletions
diff --git a/include/svtools/rtfout.hxx b/include/svtools/rtfout.hxx
index 504a6482542a..508414d9a5a5 100644
--- a/include/svtools/rtfout.hxx
+++ b/include/svtools/rtfout.hxx
@@ -30,20 +30,14 @@ namespace rtl {
};
class SvStream;
-class SVT_DLLPUBLIC RTFOutFuncs
-{
-public:
- static SvStream& Out_Char( SvStream&, sal_Unicode cChar,
- int *pUCMode,
- rtl_TextEncoding eDestEnc = RTL_TEXTENCODING_MS_1252,
- bool bWriteHelpFile = false );
- static SvStream& Out_String( SvStream&, const rtl::OUString&,
- rtl_TextEncoding eDestEnc = RTL_TEXTENCODING_MS_1252,
- bool bWriteHelpFile = false );
-
- static SvStream& Out_Hex( SvStream&, sal_uLong nHex, sal_uInt8 nLen );
-};
+namespace RTFOutFuncs {
+
+SVT_DLLPUBLIC SvStream& Out_String(
+ SvStream&, const rtl::OUString&,
+ rtl_TextEncoding eDestEnc = RTL_TEXTENCODING_MS_1252,
+ bool bWriteHelpFile = false );
+}
#endif