summaryrefslogtreecommitdiff
path: root/gentoobrowse-api/service/utils/xmlUtils.h
diff options
context:
space:
mode:
Diffstat (limited to 'gentoobrowse-api/service/utils/xmlUtils.h')
-rw-r--r--gentoobrowse-api/service/utils/xmlUtils.h9
1 files changed, 4 insertions, 5 deletions
diff --git a/gentoobrowse-api/service/utils/xmlUtils.h b/gentoobrowse-api/service/utils/xmlUtils.h
index 3e71f1d..82584cc 100644
--- a/gentoobrowse-api/service/utils/xmlUtils.h
+++ b/gentoobrowse-api/service/utils/xmlUtils.h
@@ -1,20 +1,19 @@
#ifndef GENTOOBROWSE_API_SERVICE_XMLUTILS_H
#define GENTOOBROWSE_API_SERVICE_XMLUTILS_H
-#include <libxml++/parsers/domparser.h>
#include <filesystem>
+#include <libxml++/parsers/domparser.h>
#include <optional>
namespace Gentoo {
namespace Utils {
class XmlDoc : public xmlpp::DomParser {
- public:
- XmlDoc(const std::filesystem::path &);
+ public:
+ XmlDoc(const std::filesystem::path &);
- std::optional<Glib::ustring> getXPathValue(const Glib::ustring &);
+ std::optional<Glib::ustring> getXPathValue(const Glib::ustring &);
};
}
}
#endif
-