<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<!--
-->
<web xmlns="urn:xmlliterate.schema" name="web">
<language>C++</language>
<includes>
<cppinclude name="boost/lexical_cast.hpp"/>
</includes>
<sections>
<websection name="root">
<description>Return this version as an internal string.</description>
<sections>
<websource>
<code>
return boost::lexical_cast<std::string>(_major) + "." +
boost::lexical_cast<std::string>(_minor) + "." +
boost::lexical_cast<std::string>(_build) + "." +
boost::lexical_cast<std::string>(_subbuild);
</code>
</websource>
</sections>
</websection>
</sections>
</web>