Merge pull request #10 from saurabhshri/patch-1
Fix missing header file for Boost version.
This commit is contained in:
commit
05abfbc687
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue