diff options
author | Noel Grandin <noel@peralex.com> | 2014-07-22 13:47:46 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-07-23 13:26:18 +0200 |
commit | e72ddca6a00b2f86f58869db9f688c37d9072bda (patch) | |
tree | cce5c4ffedb3975eaf48c648d5eb93c27519ecac /include | |
parent | 8497efb425d901257464a03e7c5faa3f1bbea9fe (diff) |
move string IO methods out of global header
and into a module-local header.
It's not like the methods have any actual relationship with the
SfxPoolItem class.
Change-Id: I1378364a1554642333b0c5c79d869d719b53fa0c
Diffstat (limited to 'include')
-rw-r--r-- | include/svl/poolitem.hxx | 42 |
1 files changed, 0 insertions, 42 deletions
diff --git a/include/svl/poolitem.hxx b/include/svl/poolitem.hxx index ce916507b084..ec3791c6feff 100644 --- a/include/svl/poolitem.hxx +++ b/include/svl/poolitem.hxx @@ -211,48 +211,6 @@ public: sal_uLong GetRefCount() const { return m_nRefCount; } inline SfxItemKind GetKind() const { return m_nKind; } - /** Read in a Unicode string from a streamed byte string representation. - - @param rStream Some (input) stream. Its Stream/TargetCharSets must - be set to correct values! - - @return On success, returns the reconstructed Unicode string. - */ - static OUString readByteString(SvStream & rStream); - - /** Write a byte string representation of a Unicode string into a stream. - - @param rStream Some (output) stream. Its Stream/TargetCharSets must - be set to correct values! - - @param rString Some Unicode string. - */ - static void writeByteString(SvStream & rStream, - const OUString& rString); - - /** Read in a Unicode string from either a streamed Unicode or byte string - representation. - - @param rStream Some (input) stream. If bUnicode is false, its - Stream/TargetCharSets must be set to correct values! - - @param bUnicode Whether to read in a stream Unicode (true) or byte - string (false) representation. - - @return On success, returns the reconstructed Unicode string. - */ - static OUString readUnicodeString(SvStream & rStream, bool bUnicode); - - /** Write a Unicode string representation of a Unicode string into a - stream. - - @param rStream Some (output) stream. - - @param rString Some Unicode string. - */ - static void writeUnicodeString(SvStream & rStream, - const OUString& rString); - private: SfxPoolItem& operator=( const SfxPoolItem& ); // not implemented!! }; |