This commit is contained in:
Markus Gans 2015-06-27 23:14:50 +02:00
parent f9001e59de
commit d4df6b700a
1 changed files with 16 additions and 16 deletions

View File

@ -113,25 +113,25 @@ class FString
const char* c_str() const;
const std::string toString() const;
FString toLower() const;
FString toUpper() const;
FString toLower() const;
FString toUpper() const;
sInt16 toShort() const;
uInt16 toUShort() const;
int toInt() const;
uInt toUInt() const;
long toLong() const;
uLong toULong() const;
float toFloat() const;
double toDouble() const;
sInt16 toShort() const;
uInt16 toUShort() const;
int toInt() const;
uInt toUInt() const;
long toLong() const;
uLong toULong() const;
float toFloat() const;
double toDouble() const;
FString ltrim() const;
FString rtrim() const;
FString trim() const;
FString ltrim() const;
FString rtrim() const;
FString trim() const;
FString left(uInt) const;
FString right(uInt) const;
FString mid(uInt, uInt) const;
FString left(uInt) const;
FString right(uInt) const;
FString mid(uInt, uInt) const;
std::vector<FString> split (const FString&);
std::vector<FString> split (std::wstring&);