| 13 |
|
QStringList getAllPatchFilesByWildcard(const QString &wildcard); |
| 14 |
|
void backupFile(const QString &file); |
| 15 |
|
void getAllNamedElements(pugi::xml_node &node, QList<pugi::xml_node> &result, XmlFilter &filters); |
| 16 |
+ |
void getAllXpathElements(const QString &xPathExpression, pugi::xml_document &doc, QList<pugi::xml_node> &result); |
| 17 |
|
void displaySuccessMessage(const int numberOperations, const QString &operation); |
| 18 |
|
void displayErrorMessage(const QString& operation, const QString &message, bool exitProgram=true); |
| 19 |
< |
pugi::xml_node getFirstNamedElements(pugi::xml_node &node, XmlFilter &filters); |
| 19 |
> |
pugi::xml_node getFirstNamedElement(pugi::xml_node &node, XmlFilter &filters); |
| 20 |
> |
pugi::xml_node getFirstXpathElement(const QString &xPathExpression, pugi::xml_document &doc); |
| 21 |
|
|
| 22 |
|
//// inline functions |
| 23 |
|
|