diff options
Diffstat (limited to 'include/cppunit/tools')
| -rw-r--r-- | include/cppunit/tools/StringTools.h | 4 | ||||
| -rw-r--r-- | include/cppunit/tools/XmlDocument.h | 2 | ||||
| -rw-r--r-- | include/cppunit/tools/XmlElement.h | 6 |
3 files changed, 6 insertions, 6 deletions
diff --git a/include/cppunit/tools/StringTools.h b/include/cppunit/tools/StringTools.h index d08c6e0..7a6b6d7 100644 --- a/include/cppunit/tools/StringTools.h +++ b/include/cppunit/tools/StringTools.h @@ -3,7 +3,7 @@ #include <cppunit/Portability.h> #include <string> -#include <vector> +#include <cppunit/portability/CppUnitVector.h> CPPUNIT_NS_BEGIN @@ -14,7 +14,7 @@ CPPUNIT_NS_BEGIN struct StringTools { - typedef std::vector<std::string> Strings; + typedef CppUnitVector<std::string> Strings; static std::string CPPUNIT_API toString( int value ); diff --git a/include/cppunit/tools/XmlDocument.h b/include/cppunit/tools/XmlDocument.h index 005c736..8eba6d1 100644 --- a/include/cppunit/tools/XmlDocument.h +++ b/include/cppunit/tools/XmlDocument.h @@ -17,7 +17,7 @@ CPPUNIT_NS_BEGIN class XmlElement; -/*! A XML Document. +/*! \brief A XML Document. * * A XmlDocument represents a XML file. It holds a pointer on the root XmlElement * of the document. It also holds the encoding and style sheet used. diff --git a/include/cppunit/tools/XmlElement.h b/include/cppunit/tools/XmlElement.h index 8d4d504..62d9e73 100644 --- a/include/cppunit/tools/XmlElement.h +++ b/include/cppunit/tools/XmlElement.h @@ -8,7 +8,7 @@ #pragma warning( disable: 4251 ) // X needs to have dll-interface to be used by clients of class Z #endif -#include <deque> +#include <cppunit/portability/CppUnitDeque.h> #include <string> @@ -131,10 +131,10 @@ private: std::string m_name; std::string m_content; - typedef std::deque<Attribute> Attributes; + typedef CppUnitDeque<Attribute> Attributes; Attributes m_attributes; - typedef std::deque<XmlElement *> Elements; + typedef CppUnitDeque<XmlElement *> Elements; Elements m_elements; }; |
