Add String.hh

This commit is contained in:
Eryn Wells 2015-10-17 00:37:17 -07:00
parent 9bfd637a19
commit af30c9e597

View file

@ -0,0 +1,18 @@
/* String.hh
* vim: set tw=80:
* Eryn Wells <eryn@erynwells.me>
*/
/**
* Strings are fun.
*/
#include <string>
namespace erw {
namespace core {
typedef std::string String;
} /* namespace core */
} /* namespace erw */