From e738e79d21c8f48784602efdd915aed3ef2a7c2d Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Fri, 7 Oct 2016 18:27:43 +0200 Subject: Clean up RTFOutFuncs interface Change-Id: I934f2375474035504b4ba9612af4f45a7d05ce9b --- include/svtools/rtfout.hxx | 20 +++++++------------- 1 file changed, 7 insertions(+), 13 deletions(-) (limited to 'include/svtools/rtfout.hxx') 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 -- cgit