2015-06-29 9 views
5

Come aggiungere commenti al file Qt qrc? Ho provato // e/* * /, ma questo mi dà un errore "Errore di analisi RCC ... [testo inaspettato]". File Esempio:Commenti nel file Qt qrc

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

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

risposta

10

Un formato di file .qrc è basato su XML. Pertanto è possibile utilizzare XML-style per i commenti:

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

Un esempio di un commento:

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

XML spec

2

È possibile utilizzare <!-- --> esempio

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