<?xml version="1.0" encoding="UTF-8" standalone="yes"?>

<!--
// // Copyright (c) 2006 // Paul Hamilton; QuidNovi // // This software is proprietary and remains // the sole property of QuidNovi. // // version_public_string.xml // // 27-Jan-2006 phamilton Created //
-->

<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 a public string.</description>
            <sections>
                <websource>
                    <code> std::string v = "Version " + boost::lexical_cast<std::string>(_major) + "." + boost::lexical_cast<std::string>(_minor) + " Build " + boost::lexical_cast<std::string>(_build); if (full) v += "." + boost::lexical_cast<std::string>(_subbuild); return v; </code>
                </websource>
            </sections>
        </websection>
    </sections>
</web>