diff options
Diffstat (limited to 'gentoobrowse-api/service/utils/xmlUtils.h')
-rw-r--r-- | gentoobrowse-api/service/utils/xmlUtils.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/gentoobrowse-api/service/utils/xmlUtils.h b/gentoobrowse-api/service/utils/xmlUtils.h index a02df6c..3e71f1d 100644 --- a/gentoobrowse-api/service/utils/xmlUtils.h +++ b/gentoobrowse-api/service/utils/xmlUtils.h @@ -2,14 +2,14 @@ #define GENTOOBROWSE_API_SERVICE_XMLUTILS_H #include <libxml++/parsers/domparser.h> -#include <boost/filesystem/path.hpp> +#include <filesystem> #include <optional> namespace Gentoo { namespace Utils { class XmlDoc : public xmlpp::DomParser { public: - XmlDoc(const boost::filesystem::path &); + XmlDoc(const std::filesystem::path &); std::optional<Glib::ustring> getXPathValue(const Glib::ustring &); }; |