summaryrefslogtreecommitdiffstats
path: root/sc/inc/stringutil.hxx
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2012-08-04 10:33:53 +0100
committerCaolán McNamara <caolanm@redhat.com>2012-08-07 16:14:45 +0100
commitdb95e0b75903a34a1b88a3701334e154f32eeceb (patch)
treeed9a2370175d5dc85b2908b35e430d9051e8dee3 /sc/inc/stringutil.hxx
parentFixed problems after rebase. (diff)
downloadcore-db95e0b75903a34a1b88a3701334e154f32eeceb.tar.gz
core-db95e0b75903a34a1b88a3701334e154f32eeceb.zip
move UniString::GetQuotedToken to sc, you can keep it
Change-Id: I6bc724186d9d701316e3e945d877bfaa88ac120d
Diffstat (limited to 'sc/inc/stringutil.hxx')
-rw-r--r--sc/inc/stringutil.hxx5
1 files changed, 5 insertions, 0 deletions
diff --git a/sc/inc/stringutil.hxx b/sc/inc/stringutil.hxx
index 954d4bc1b2bb..a178bebf7ca7 100644
--- a/sc/inc/stringutil.hxx
+++ b/sc/inc/stringutil.hxx
@@ -30,6 +30,7 @@
#define SC_STRINGUTIL_HXX
#include "rtl/ustring.hxx"
+#include "tools/string.hxx"
#include "scdllapi.h"
class SvNumberFormatter;
@@ -95,6 +96,10 @@ public:
*/
static bool parseSimpleNumber(
const ::rtl::OUString& rStr, sal_Unicode dsep, sal_Unicode gsep, double& rVal);
+
+ static xub_StrLen SC_DLLPUBLIC GetQuotedTokenCount(const UniString &rIn, const UniString& rQuotedPairs, sal_Unicode cTok = ';' );
+ static UniString SC_DLLPUBLIC GetQuotedToken(const UniString &rIn, xub_StrLen nToken, const UniString& rQuotedPairs,
+ sal_Unicode cTok, xub_StrLen& rIndex );
};