summaryrefslogtreecommitdiff
path: root/src/string.hh
diff options
context:
space:
mode:
authorMaxime Coste <frrrwww@gmail.com>2012-04-14 01:17:09 +0000
committerMaxime Coste <frrrwww@gmail.com>2012-04-14 01:17:09 +0000
commit93379384036dadada06139245d1e4eca13cabebd (patch)
tree0f5475fd2c7fc212982d881b67444b20a0f8f809 /src/string.hh
parentaf5c528f043f663b94ce197b0c70ddb3da9224e8 (diff)
replace std::string references with String
Diffstat (limited to 'src/string.hh')
-rw-r--r--src/string.hh16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/string.hh b/src/string.hh
new file mode 100644
index 00000000..38a8aaae
--- /dev/null
+++ b/src/string.hh
@@ -0,0 +1,16 @@
+#ifndef string_hh_INCLUDED
+#define string_hh_INCLUDED
+
+#include <string>
+
+namespace Kakoune
+{
+
+typedef char Character;
+typedef std::string String;
+
+}
+
+
+#endif // string_hh_INCLUDED
+