Merge pull request #10 from saurabhshri/patch-1

Fix missing header file for Boost version.
This commit is contained in:
Daniel Wolf 2017-03-20 21:13:32 +01:00 committed by GitHub
commit 05abfbc687
1 changed files with 5 additions and 0 deletions

View File

@ -1,6 +1,7 @@
#include "XmlExporter.h"
#include <boost/property_tree/ptree.hpp>
#include <boost/property_tree/xml_parser.hpp>
#include <boost/version.hpp>
#include "exporterTools.h"
using std::string;
@ -20,6 +21,10 @@ void XmlExporter::exportAnimation(const boost::filesystem::path& inputFilePath,
mouthCueElement.put("<xmlattr>.end", formatDuration(timedShape.getEnd()));
}
#ifndef BOOST_VERSION //present in version.hpp
#error "Could not detect Boost version."
#endif
#if BOOST_VERSION < 105600 // Support legacy syntax
using writer_setting = boost::property_tree::xml_writer_settings<char>;
#else