diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2015-09-10 15:08:21 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2015-09-10 23:04:34 +0200 |
commit | 4464e5dbca7cab6ec91d19914eddd934cb354aa7 (patch) | |
tree | 5777fd95f29f299f6c0f41e038017d6038969cf9 /include/tools | |
parent | 8cb1f9ac1ce90b324307711f752591a1acc9a6df (diff) |
No need for INetMIMEMessageStream encoding
...in the only use case in ODatabaseForm
Change-Id: I0282a9f60b05f279a11dcf1990e68b7e017ea3aa
Diffstat (limited to 'include/tools')
-rw-r--r-- | include/tools/inetstrm.hxx | 19 |
1 files changed, 1 insertions, 18 deletions
diff --git a/include/tools/inetstrm.hxx b/include/tools/inetstrm.hxx index 97937322820a..83c5592a0c0a 100644 --- a/include/tools/inetstrm.hxx +++ b/include/tools/inetstrm.hxx @@ -35,10 +35,7 @@ enum INetStreamStatus enum INetMessageStreamState { INETMSG_EOL_BEGIN, - INETMSG_EOL_DONE, - INETMSG_EOL_SCR, - INETMSG_EOL_FCR, - INETMSG_EOL_FSP + INETMSG_EOL_DONE }; /// Message Generator Interface. @@ -76,14 +73,6 @@ public: bool IsHeaderGenerated() const { return bHeaderGenerated; } }; -enum INetMessageEncoding -{ - INETMSG_ENCODING_7BIT, - INETMSG_ENCODING_BINARY, - INETMSG_ENCODING_QUOTED, - INETMSG_ENCODING_BASE64 -}; - class TOOLS_DLLPUBLIC INetMIMEMessageStream : public INetMessageIStream { @@ -92,14 +81,8 @@ class TOOLS_DLLPUBLIC INetMIMEMessageStream sal_uIntPtr nChildIndex; INetMIMEMessageStream *pChildStrm; - INetMessageEncoding eEncoding; - INetMessageIStream *pEncodeStrm; - SvMemoryStream *pMsgBuffer; - static INetMessageEncoding GetMsgEncoding ( - const OUString& rContentType); - INetMIMEMessageStream (const INetMIMEMessageStream& rStrm) SAL_DELETED_FUNCTION; INetMIMEMessageStream& operator= (const INetMIMEMessageStream& rStrm) SAL_DELETED_FUNCTION; |