summaryrefslogtreecommitdiff
path: root/src/common/mmo.hpp
diff options
context:
space:
mode:
authorBen Longbons <b.r.longbons@gmail.com>2013-09-26 23:55:29 -0700
committerBen Longbons <b.r.longbons@gmail.com>2013-10-05 13:42:45 -0700
commitcaae1e38d0d239f4f7088a64526fe1d2f6587999 (patch)
tree42ba875885f7593c070da93f828b7ae38ea2dc7c /src/common/mmo.hpp
parent06c411ef291e1f608487989b0da63aefbbdfefc1 (diff)
downloadtmwa-caae1e38d0d239f4f7088a64526fe1d2f6587999.tar.gz
tmwa-caae1e38d0d239f4f7088a64526fe1d2f6587999.tar.bz2
tmwa-caae1e38d0d239f4f7088a64526fe1d2f6587999.tar.xz
tmwa-caae1e38d0d239f4f7088a64526fe1d2f6587999.zip
Split string header into pieces
Diffstat (limited to 'src/common/mmo.hpp')
-rw-r--r--src/common/mmo.hpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/common/mmo.hpp b/src/common/mmo.hpp
index 0d3403c..16acb88 100644
--- a/src/common/mmo.hpp
+++ b/src/common/mmo.hpp
@@ -3,6 +3,9 @@
#define MMO_HPP
# include "sanity.hpp"
+
+# include "../strings/vstring.hpp"
+
# include "timer.t.hpp"
# include "utils2.hpp"
@@ -57,7 +60,7 @@ T stringish(VString<sizeof(T) - 1> iv)
#define DEFAULT_EMAIL stringish<AccountEmail>("a@a.com")
// It is decreed: a mapname shall not contain an extension
-class MapName : public strings::_crtp_string<MapName, MapName, ZString, XString>
+class MapName : public strings::_crtp_string<MapName, MapName, strings::ZPair>
{
VString<15> _impl;
public: