src/xml/sax/qxml.cpp
changeset 3 41300fa6a67c
parent 0 1918ee327afb
child 4 3b1da2848fc7
equal deleted inserted replaced
2:56cd8111b7f7 3:41300fa6a67c
  3061     and handle the incoming data there. See QNetworkAccessManager.
  3061     and handle the incoming data there. See QNetworkAccessManager.
  3062     
  3062     
  3063     Aspects of the parsing behavior can be adapted using setFeature()
  3063     Aspects of the parsing behavior can be adapted using setFeature()
  3064     and setProperty().
  3064     and setProperty().
  3065     
  3065     
       
  3066     \snippet doc/src/snippets/code/src_xml_sax_qxml.cpp 0
       
  3067 
  3066     QXmlSimpleReader is not reentrant. If you want to use the class
  3068     QXmlSimpleReader is not reentrant. If you want to use the class
  3067     in threaded code, lock the code using QXmlSimpleReader with a
  3069     in threaded code, lock the code using QXmlSimpleReader with a
  3068     locking mechanism, such as a QMutex.
  3070     locking mechanism, such as a QMutex.
  3069 
       
  3070     \snippet doc/src/snippets/code/src_xml_sax_qxml.cpp 0
       
  3071 */
  3071 */
  3072 
  3072 
  3073 static inline bool is_S(QChar ch)
  3073 static inline bool is_S(QChar ch)
  3074 {
  3074 {
  3075     ushort uc = ch.unicode();
  3075     ushort uc = ch.unicode();