From 102233440e466699d85b022fe1793e68187488c1 Mon Sep 17 00:00:00 2001 From: prozacx Date: Wed, 29 Jun 2005 22:48:39 +0000 Subject: [PATCH] Added VCString typedef git-svn-id: https://znc.svn.sourceforge.net/svnroot/znc/trunk@395 726aef4b-f618-498e-8847-2d620e286838 --- String.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/String.h b/String.h index 603628dd..b193303b 100644 --- a/String.h +++ b/String.h @@ -4,8 +4,10 @@ #include #include #include +#include using std::string; +using std::vector; using std::stringstream; class CString : public string { @@ -67,6 +69,8 @@ private: protected: }; +typedef vector VCString; + class MCString : public std::map { public: MCString() : std::map() {}