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 */