0
0
mirror of https://github.com/zeux/pugixml.git synced 2025-01-13 17:37:58 +08:00

Moved STL includes into header file

git-svn-id: http://pugixml.googlecode.com/svn/trunk@9 99668b35-9821-0410-8761-19e4c4f06640
This commit is contained in:
arseny.kapoulkine 2006-11-22 09:09:10 +00:00
parent 6c5afb3ae1
commit 6e12a6a274
2 changed files with 3 additions and 3 deletions

View File

@ -11,9 +11,6 @@
//
///////////////////////////////////////////////////////////////////////////////
#include <vector>
#include <string>
#include "pugixml.hpp"
namespace pugi

View File

@ -14,6 +14,9 @@
#ifndef HEADER_PUGIXML_HPP
#define HEADER_PUGIXML_HPP
#include <vector>
#include <string>
/// The PugiXML Parser namespace.
namespace pugi
{