summaryrefslogtreecommitdiff
path: root/comphelper/inc/comphelper/string.hxx
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2012-02-10 13:02:08 +0000
committerCaolán McNamara <caolanm@redhat.com>2012-02-10 14:20:52 +0000
commit740cf4a5903dd7aaad4e60ab71a43b062e1d50d8 (patch)
treef1745bf4393fedc03ed132a23ec57d7cf02838c6 /comphelper/inc/comphelper/string.hxx
parentf484e0b07820d5772376aa75bc0f823f1e77e2f2 (diff)
bah, we don't need these after all
Diffstat (limited to 'comphelper/inc/comphelper/string.hxx')
-rw-r--r--comphelper/inc/comphelper/string.hxx60
1 files changed, 0 insertions, 60 deletions
diff --git a/comphelper/inc/comphelper/string.hxx b/comphelper/inc/comphelper/string.hxx
index e3d11d9d48e5..2c63954a3535 100644
--- a/comphelper/inc/comphelper/string.hxx
+++ b/comphelper/inc/comphelper/string.hxx
@@ -583,66 +583,6 @@ COMPHELPER_DLLPUBLIC bool isdigitAsciiString(const rtl::OString &rString);
*/
COMPHELPER_DLLPUBLIC bool isdigitAsciiString(const rtl::OUString &rString);
-/** Determine if an OString contains solely ASCII alphanumeric chars/digits
-
- @param rString An OString
-
- @return false if string contains any characters outside
- the ASCII 'a'-'z', 'A'-'Z' and '0'-'9' ranges
- true otherwise, including for empty string
- */
-COMPHELPER_DLLPUBLIC bool isalnumAsciiString(const rtl::OString &rString);
-
-/** Determine if an OUString contains solely ASCII alphanumeric chars/digits
-
- @param rString An OUString
-
- @return false if string contains any characters outside
- the ASCII 'a'-'z', 'A'-'Z' and '0'-'9' ranges
- true otherwise, including for empty string
- */
-COMPHELPER_DLLPUBLIC bool isalnumAsciiString(const rtl::OUString &rString);
-
-/** Determine if an OString contains solely ASCII lower-case chars
-
- @param rString An OString
-
- @return false if string contains any characters outside
- the ASCII 'a'-'z' ranges
- true otherwise, including for empty string
- */
-COMPHELPER_DLLPUBLIC bool islowerAsciiString(const rtl::OString &rString);
-
-/** Determine if an OUString contains solely ASCII lower-case chars
-
- @param rString An OUString
-
- @return false if string contains any characters outside
- the ASCII 'a'-'z' ranges
- true otherwise, including for empty string
- */
-COMPHELPER_DLLPUBLIC bool islowerAsciiString(const rtl::OUString &rString);
-
-/** Determine if an OString contains solely ASCII upper-case chars
-
- @param rString An OString
-
- @return false if string contains any characters outside
- the ASCII 'A'-'Z' ranges
- true otherwise, including for empty string
- */
-COMPHELPER_DLLPUBLIC bool isupperAsciiString(const rtl::OString &rString);
-
-/** Determine if an OUString contains solely ASCII upper-case chars
-
- @param rString An OUString
-
- @return false if string contains any characters outside
- the ASCII 'A'-'Z' ranges
- true otherwise, including for empty string
- */
-COMPHELPER_DLLPUBLIC bool isupperAsciiString(const rtl::OUString &rString);
-
COMPHELPER_DLLPUBLIC inline bool isdigitAscii(sal_Unicode c)
{
return ((c >= '0') && (c <= '9'));