aboutsummaryrefslogtreecommitdiff
path: root/common/str.h
diff options
context:
space:
mode:
authorVincent Bénony2015-12-01 18:57:39 +0100
committerVincent Bénony2016-01-06 15:35:30 +0100
commitbbf3785bbadd42536ad6a266ae4dc082351f87d5 (patch)
treea4e23fe6575638a49ae2ef7381feb909b038f537 /common/str.h
parent108ce38443eda81032b72e81202237da53f922e8 (diff)
downloadscummvm-rg350-bbf3785bbadd42536ad6a266ae4dc082351f87d5.tar.gz
scummvm-rg350-bbf3785bbadd42536ad6a266ae4dc082351f87d5.tar.bz2
scummvm-rg350-bbf3785bbadd42536ad6a266ae4dc082351f87d5.zip
IOS: Adds two helper functions on strings
Diffstat (limited to 'common/str.h')
-rw-r--r--common/str.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/common/str.h b/common/str.h
index dede87a005..f156290e94 100644
--- a/common/str.h
+++ b/common/str.h
@@ -180,6 +180,7 @@ public:
inline uint size() const { return _size; }
inline bool empty() const { return (_size == 0); }
+ char firstChar() const { return (_size > 0) ? _str[0] : 0; }
char lastChar() const { return (_size > 0) ? _str[_size - 1] : 0; }
char operator[](int idx) const {
@@ -217,6 +218,11 @@ public:
*/
void trim();
+ /**
+ * Add a path component
+ */
+ String stringByAppendingPathComponent(String component, char sep = '/') const;
+
uint hash() const;
/**