Ignore:
Timestamp:
May 5, 2011, 5:36:53 AM (14 years ago)
Author:
Dmitry A. Kuminov
Message:

trunk: Merged in qt 4.7.2 sources from branches/vendor/nokia/qt.

Location:
trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk

  • trunk/qmake/generators/xmloutput.h

    r651 r846  
    11/****************************************************************************
    22**
    3 ** Copyright (C) 2010 Nokia Corporation and/or its subsidiary(-ies).
     3** Copyright (C) 201 Nokia Corporation and/or its subsidiary(-ies).
    44** All rights reserved.
    55** Contact: Nokia Corporation ([email protected])
     
    7070        tDeclaration,       // <?xml version="x.x" encoding="xxx"?>
    7171        tTag,               // <tagname attribute1="value"
     72
     73
    7274        tCloseTag,          // Closes an open tag
    7375        tAttribute,         //  attribute2="value">
     76
    7477        tData,              // Tag data (formating done)
     78
    7579        tComment,           // <!-- Comment -->
    7680        tCDATA              // <![CDATA[ ... ]]>
     
    8690    int indentLevel();
    8791    void setState(XMLState state);
     92
    8893    XMLState state();
    8994
     
    122127    void addRaw(const QString &rawText);
    123128    void addAttribute(const QString &attribute, const QString &value);
     129
    124130    void addData(const QString &data);
    125131
     
    164170}
    165171
     172
     173
     174
     175
     176