aboutsummaryrefslogtreecommitdiffstats
path: root/include/swlocale.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/swlocale.h')
-rw-r--r--include/swlocale.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/include/swlocale.h b/include/swlocale.h
index eed6adf..220848a 100644
--- a/include/swlocale.h
+++ b/include/swlocale.h
@@ -2,7 +2,7 @@
* swlocale.h - definition of Class SWLocale used for retrieval
* of locale lookups
*
- * $Id: swlocale.h,v 1.8 2002/09/30 10:34:43 dglassey Exp $
+ * $Id: swlocale.h,v 1.10 2002/10/01 22:04:58 dglassey Exp $
*
* Copyright 2000 CrossWire Bible Society (http://www.crosswire.org)
* CrossWire Bible Society
@@ -31,8 +31,9 @@
#include <defs.h>
+SWORD_NAMESPACE_START
-typedef map < string, string, less < string > >LookupMap;
+typedef std::map < std::string, std::string, std::less < std::string > >LookupMap;
/** SWLocale is used for the localisation of the booknames
* The SWLocale is a class which holds the information of one language.
@@ -69,4 +70,5 @@ public:
virtual void getBooks(char **iBMAX, struct sbook ***ibooks);
};
+SWORD_NAMESPACE_END
#endif