summaryrefslogtreecommitdiff
path: root/cpp/include/IceUtil/StringUtil.h
diff options
context:
space:
mode:
authorBenoit Foucher <benoit@zeroc.com>2005-01-27 14:09:35 +0000
committerBenoit Foucher <benoit@zeroc.com>2005-01-27 14:09:35 +0000
commit9b9bd3568a59a4b111953bc016a9bcdf08ca728c (patch)
treec644accf965ae25c0c4f8d318a5a19500d36f38a /cpp/include/IceUtil/StringUtil.h
parentConnection validation now checks for Ice.Override.ConnectTimeout (diff)
downloadice-9b9bd3568a59a4b111953bc016a9bcdf08ca728c.tar.bz2
ice-9b9bd3568a59a4b111953bc016a9bcdf08ca728c.tar.xz
ice-9b9bd3568a59a4b111953bc016a9bcdf08ca728c.zip
Added 'object list' and 'object describe' IcePack admin commands.
Diffstat (limited to 'cpp/include/IceUtil/StringUtil.h')
-rw-r--r--cpp/include/IceUtil/StringUtil.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/cpp/include/IceUtil/StringUtil.h b/cpp/include/IceUtil/StringUtil.h
index 16325a4489f..c5ceaa45326 100644
--- a/cpp/include/IceUtil/StringUtil.h
+++ b/cpp/include/IceUtil/StringUtil.h
@@ -35,6 +35,14 @@ ICE_UTIL_API bool unescapeString(const std::string&, std::string::size_type, std
//
ICE_UTIL_API std::string::size_type checkQuote(const std::string&, std::string::size_type = 0);
+//
+// Match `s' against the pattern `pat'. A * in the pattern acts
+// as a wildcard: it matches any non-empty sequence of characters
+// other than a period (`.'). We match by hand here because
+// it's portable across platforms (whereas regex() isn't).
+//
+ICE_UTIL_API bool match(const std::string&, const std::string&);
+
}
#endif