mirror of
https://github.com/libretro/scummvm.git
synced 2025-04-03 15:21:40 +00:00
COMMON: Add new method joinComponents
This commit is contained in:
parent
91585f3d94
commit
0979c692de
@ -276,6 +276,20 @@ Path Path::punycodeDecode() const {
|
||||
return ret;
|
||||
}
|
||||
|
||||
Path Path::joinComponents(const StringArray& c) {
|
||||
String res;
|
||||
|
||||
for (uint i = 0; i < c.size(); i++) {
|
||||
res += c[i];
|
||||
if (i + 1 < c.size())
|
||||
res += DIR_SEPARATOR;
|
||||
}
|
||||
|
||||
Path ret;
|
||||
ret._str = res;
|
||||
return ret;
|
||||
}
|
||||
|
||||
// See getIdentifierString() for more details.
|
||||
// This does the same but for a single path component and is used by
|
||||
// getIdentifierString().
|
||||
|
@ -215,6 +215,12 @@ public:
|
||||
* 2 separots follow each other
|
||||
*/
|
||||
StringArray splitComponents() const;
|
||||
|
||||
|
||||
/**
|
||||
* Opposite of splitComponents
|
||||
*/
|
||||
static Path joinComponents(const StringArray& c);
|
||||
};
|
||||
|
||||
/** @} */
|
||||
|
Loading…
x
Reference in New Issue
Block a user