diff options
author | Oliver Bolte <obo@openoffice.org> | 2007-01-25 10:03:28 +0000 |
---|---|---|
committer | Oliver Bolte <obo@openoffice.org> | 2007-01-25 10:03:28 +0000 |
commit | 45b6be0360abe817312d78cb27d7198f6c72f451 (patch) | |
tree | 53c57bf2a05a08e9542789fe49a04a2353884c17 /sc/inc/dptabdat.hxx | |
parent | 49547bc0049ef17431b0860902b23c9824b6c9bc (diff) |
INTEGRATION: CWS calc41 (1.5.354); FILE MERGED
2007/01/10 18:53:25 nn 1.5.354.1: #i72188# use hash map for datapilot result members (patch from Jody)
Diffstat (limited to 'sc/inc/dptabdat.hxx')
-rw-r--r-- | sc/inc/dptabdat.hxx | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/sc/inc/dptabdat.hxx b/sc/inc/dptabdat.hxx index 3ed95d53474b..7c432c08f2c1 100644 --- a/sc/inc/dptabdat.hxx +++ b/sc/inc/dptabdat.hxx @@ -4,9 +4,9 @@ * * $RCSfile: dptabdat.hxx,v $ * - * $Revision: 1.5 $ + * $Revision: 1.6 $ * - * last change: $Author: rt $ $Date: 2005-09-08 17:36:18 $ + * last change: $Author: obo $ $Date: 2007-01-25 11:03:15 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -82,8 +82,14 @@ struct ScDPItemData aString(rS), fValue(fV), bHasValue( bHV ) {} void SetString( const String& rS ) { aString = rS; bHasValue = FALSE; } - BOOL IsCaseInsEqual( const ScDPItemData& r ) const; + + size_t Hash() const; + + // exact equality + BOOL operator==( const ScDPItemData& r ) const; + // case insensitive equality + static sal_Int32 Compare( const ScDPItemData& rA, const ScDPItemData& rB ); }; #define SC_VALTYPE_EMPTY 0 |