Qt qrc文件中的注释

时间:2015-06-29 11:22:27

标签: qt resources

如何在Qt qrc文件中添加评论? 我试过//和/ * * /,但是这给了我一个错误" RCC Parse错误...... [意外文本]"。 样本文件:

<RCC>
<qresource>
    // images
    <file>image1.png</file>
    <file>image2.png</file>

    // qml documents
    <file>doc1.qml</file>
    <file>doc2.qml</file>
</qresource>
</RCC>

2 个答案:

答案 0 :(得分:10)

.qrc文件的格式基于XML。因此,您可以使用XML样式进行注释:

    Comment    ::=      '<!--' ((Char - '-') | ('-' (Char - '-')))* '-->'

评论的一个例子:

<!-- declarations for <head> & <body> -->

XML spec

答案 1 :(得分:3)

您可以使用<!-- --> e.g。

<!-- this is my comment in qrc file -->