diff options
author | arseny.kapoulkine <arseny.kapoulkine@99668b35-9821-0410-8761-19e4c4f06640> | 2006-11-22 09:09:10 +0000 |
---|---|---|
committer | arseny.kapoulkine <arseny.kapoulkine@99668b35-9821-0410-8761-19e4c4f06640> | 2006-11-22 09:09:10 +0000 |
commit | 6e12a6a2742c0529d5ef5444379398bd9f0f92d6 (patch) | |
tree | 7ca1a74bc39da1c0c2809e36a6d3241c8b5563c7 /src/pugixml.hpp | |
parent | 6c5afb3ae19c21133a03cb889614d3d59d2f6127 (diff) |
Moved STL includes into header file
git-svn-id: http://pugixml.googlecode.com/svn/trunk@9 99668b35-9821-0410-8761-19e4c4f06640
Diffstat (limited to 'src/pugixml.hpp')
-rw-r--r-- | src/pugixml.hpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/pugixml.hpp b/src/pugixml.hpp index 0d722df..c8c91c2 100644 --- a/src/pugixml.hpp +++ b/src/pugixml.hpp @@ -14,6 +14,9 @@ #ifndef HEADER_PUGIXML_HPP
#define HEADER_PUGIXML_HPP
+#include <vector>
+#include <string>
+
/// The PugiXML Parser namespace.
namespace pugi
{
|