summaryrefslogtreecommitdiffstats
path: root/include/core/String.hpp
diff options
context:
space:
mode:
authorNickolai Korshunov <n.a.korshunov@gmail.com>2018-04-25 11:40:49 +0300
committerNickolai Korshunov <n.a.korshunov@gmail.com>2018-04-25 11:40:49 +0300
commitef37d8d76e45a8249f34e66dfcc80954fecd5981 (patch)
tree2c155a6f9107b21474e9f1adcb0d4b752bb2e7bc /include/core/String.hpp
parent876715b610a52749e5cc7824122f892dd430ffab (diff)
parent68ba815bc5c9ffa9494511f9feb8ea36a95369d7 (diff)
downloadredot-cpp-ef37d8d76e45a8249f34e66dfcc80954fecd5981.tar.gz
Merge branch 'master' of https://github.com/GodotNativeTools/godot-cpp
Diffstat (limited to 'include/core/String.hpp')
-rw-r--r--include/core/String.hpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/core/String.hpp b/include/core/String.hpp
index de65f3c..7826fcb 100644
--- a/include/core/String.hpp
+++ b/include/core/String.hpp
@@ -81,6 +81,7 @@ public:
int find(String what, int from = 0) const;
int find_last(String what) const;
int findn(String what, int from = 0) const;
+ String format(Variant values) const;
String format(Variant values, String placeholder) const;
String get_base_dir() const;
String get_basename() const;
@@ -128,6 +129,7 @@ public:
String to_upper() const;
String xml_escape() const;
String xml_unescape() const;
+
};
String operator+(const char *a, const String &b);