00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042 #include <ximol/xml/open_stag.hpp>
00043
00044 XIMOL_XML_BEGIN_NAMESPACE
00045
00046
00047 #define XIMOL_HEADER_DEFINE_FUNCTION(type1, type2, type3) \
00048 manipulator_open_stag< qualified_name<type1, type2>, type3> open_stag(type1 & prefix, type2 & local, type3 & att){ \
00049 return manipulator_open_stag< qualified_name<type1,type2>, type3>(qname(prefix, local),att); };
00050 #include <ximol/config/define_functions_prefix_local_attributes.hpp>
00051
00052
00053 #define XIMOL_HEADER_DEFINE_FUNCTION(type1, type2) \
00054 manipulator_open_stag< qualified_name<type1, type2>, xml::attributes> open_stag(type1 & prefix, type2 & local){ \
00055 return manipulator_open_stag< qualified_name<type1,type2>, xml::attributes>(qname(prefix, local)); };
00056 #include <ximol/config/define_functions_prefix_local.hpp>
00057
00058
00059 #define XIMOL_HEADER_DEFINE_FUNCTION(type1, type3) \
00060 manipulator_open_stag< qualified_name<type1, type1>, type3> open_stag(type1 & local, type3 & att){ \
00061 return manipulator_open_stag< qualified_name<type1,type1>, type3>(qname(local),att); };
00062 #include <ximol/config/define_functions_local_attributes.hpp>
00063
00064
00065 #define XIMOL_HEADER_DEFINE_FUNCTION(type1) \
00066 manipulator_open_stag< qualified_name<type1, type1>, xml::attributes> open_stag(type1 & local){ \
00067 return manipulator_open_stag< qualified_name<type1,type1>, xml::attributes>(qname(local)); };
00068 #include <ximol/config/define_functions_local.hpp>
00069
00070 XIMOL_XML_END_NAMESPACE
00071