aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/texts/rawtext/rawtext.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/modules/texts/rawtext/rawtext.cpp')
-rw-r--r--src/modules/texts/rawtext/rawtext.cpp10
1 files changed, 9 insertions, 1 deletions
diff --git a/src/modules/texts/rawtext/rawtext.cpp b/src/modules/texts/rawtext/rawtext.cpp
index 489ea1c..072a341 100644
--- a/src/modules/texts/rawtext/rawtext.cpp
+++ b/src/modules/texts/rawtext/rawtext.cpp
@@ -13,7 +13,7 @@
#include <unistd.h>
#endif
-#include <string.h>
+#include <string>
#include <utilfuns.h>
#include <rawverse.h>
#include <rawtext.h>
@@ -27,6 +27,12 @@
#define O_BINARY 0
#endif
+using std::string;
+using std::map;
+using std::list;
+
+SWORD_NAMESPACE_START
+
/******************************************************************************
* RawText Constructor - Initializes data for instance of RawText
*
@@ -580,3 +586,5 @@ void RawText::increment(int steps) {
if (tmpkey != key)
delete tmpkey;
}
+
+SWORD_NAMESPACE_END