quickstart_01.cppA first program to output some data in an xml stream.
In this first example, we could see how to put a start tag into the stream. We only need to use xml::stag("tag_name"). To close the tag, we use the xml::etag(). We do not need to put the end tag name, ximol automagically put it into the stream. |