src/dbus/qdbusargument.cpp
changeset 37 758a864f9613
parent 30 5dc02b23752f
equal deleted inserted replaced
36:ef0373b55136 37:758a864f9613
   823     operators, as in the following example:
   823     operators, as in the following example:
   824 
   824 
   825     \snippet doc/src/snippets/code/src_qdbus_qdbusargument.cpp 6
   825     \snippet doc/src/snippets/code/src_qdbus_qdbusargument.cpp 6
   826 
   826 
   827     If the type you want to marshall is a QList, QVector or any of the
   827     If the type you want to marshall is a QList, QVector or any of the
   828     Qt's \l {Generic Containers} that take one template parameter,
   828     Qt's \l {Container Classes} that take one template parameter,
   829     you need not declare an \c{operator<<} function for it, since
   829     you need not declare an \c{operator<<} function for it, since
   830     QtDBus provides generic templates to do the job of marshalling
   830     QtDBus provides generic templates to do the job of marshalling
   831     the data. The same applies for STL's sequence containers, such
   831     the data. The same applies for STL's sequence containers, such
   832     as \c {std::list}, \c {std::vector}, etc.
   832     as \c {std::list}, \c {std::vector}, etc.
   833 
   833 
   950     operators, as in the following example:
   950     operators, as in the following example:
   951 
   951 
   952     \snippet doc/src/snippets/code/src_qdbus_qdbusargument.cpp 9
   952     \snippet doc/src/snippets/code/src_qdbus_qdbusargument.cpp 9
   953 
   953 
   954     If the type you want to demarshall is a QList, QVector or any of the
   954     If the type you want to demarshall is a QList, QVector or any of the
   955     Qt's \l {Generic Containers} that take one template parameter, you
   955     Qt's \l {Container Classes} that take one template parameter, you
   956     need not declare an \c{operator>>} function for it, since QtDBus
   956     need not declare an \c{operator>>} function for it, since QtDBus
   957     provides generic templates to do the job of demarshalling the data.
   957     provides generic templates to do the job of demarshalling the data.
   958     The same applies for STL's sequence containers, such as \c {std::list},
   958     The same applies for STL's sequence containers, such as \c {std::list},
   959     \c {std::vector}, etc.
   959     \c {std::vector}, etc.
   960 
   960