00001 //-----------------------------------------------------------------------------
00002 /** \example quickstart_01.cpp
00003 A first program to output some data in an xml stream.
00004
00005 In this first example, we could see how to put a start tag into the stream.
00006 We only need to use xml::stag("tag_name"). To close the tag, we use the
00007 xml::etag(). We do not need to put the end tag name, ximol automagically
00008 put it into the stream.
00009
00010 */
00011 //-----------------------------------------------------------------------------
00012
00013 //-----------------------------------------------------------------------------
00014 /** \example tutorial_hello.cpp
00015 A first program to serialize a small struct.
00016
00017 With this example, we see how to put data on a xml stream. We could
00018 notice the xml::content function which read only the tag content.
00019
00020 */
00021 //-----------------------------------------------------------------------------
00022
00023 //-----------------------------------------------------------------------------
00024 /** \example tutorial_attribute.cpp
00025 A short program to learn all attribute feature
00026
00027 With this example, we see how to put and extract data from the attribute
00028 object. We also learn how to deal with namespace.
00029
00030 */
00031 //-----------------------------------------------------------------------------
00032
00033 //-----------------------------------------------------------------------------
00034 /** \example tutorial_stag.cpp
00035 A short program to learn all stag feature
00036
00037 With this example, we see how to deal with tag.
00038
00039 */
00040 //-----------------------------------------------------------------------------
00041