From af30c9e5972fc3b1ba01e7fcfd2e030390520a24 Mon Sep 17 00:00:00 2001 From: Eryn Wells Date: Sat, 17 Oct 2015 00:37:17 -0700 Subject: [PATCH] Add String.hh --- lib/core/include/core/String.hh | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 lib/core/include/core/String.hh diff --git a/lib/core/include/core/String.hh b/lib/core/include/core/String.hh new file mode 100644 index 0000000..0206db5 --- /dev/null +++ b/lib/core/include/core/String.hh @@ -0,0 +1,18 @@ +/* String.hh + * vim: set tw=80: + * Eryn Wells + */ +/** + * Strings are fun. + */ + +#include + + +namespace erw { +namespace core { + +typedef std::string String; + +} /* namespace core */ +} /* namespace erw */