summaryrefslogtreecommitdiff
path: root/sc
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2003-11-05 12:40:58 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2003-11-05 12:40:58 +0000
commit2de494870fcb464191dcdb3e32e8267fc76661d4 (patch)
tree3cb21e66bf8ef3c2a400ce0b234d5c043f52e326 /sc
parentc1356f81df6e4f6f8fc1cbc6502a9805aae7ea1f (diff)
INTEGRATION: CWS calc17 (1.3.124); FILE MERGED
2003/08/13 15:08:33 dr 1.3.124.1: #110887# string handling changes
Diffstat (limited to 'sc')
-rw-r--r--sc/source/filter/inc/xestream.hxx15
1 files changed, 2 insertions, 13 deletions
diff --git a/sc/source/filter/inc/xestream.hxx b/sc/source/filter/inc/xestream.hxx
index 14de4e71e5e8..1344b083278c 100644
--- a/sc/source/filter/inc/xestream.hxx
+++ b/sc/source/filter/inc/xestream.hxx
@@ -2,9 +2,9 @@
*
* $RCSfile: xestream.hxx,v $
*
- * $Revision: 1.3 $
+ * $Revision: 1.4 $
*
- * last change: $Author: hr $ $Date: 2003-03-26 18:05:10 $
+ * last change: $Author: hr $ $Date: 2003-11-05 13:40:58 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -283,16 +283,5 @@ inline XclExpStream& XclExpStream::operator<<( double fValue )
// ============================================================================
-/** Function object to stream out an object, useful i.e. for ::std::for_each(). */
-template< typename Type > struct XclWriteFunc
-{
- XclExpStream& mrStrm;
- inline explicit XclWriteFunc( XclExpStream& rStrm ) : mrStrm( rStrm ) {}
- inline void operator()( const Type& rObj ) { mrStrm << rObj; }
-};
-
-
-// ============================================================================
-
#endif