aboutsummaryrefslogblamecommitdiff
path: root/qdeduper/utilities.hpp
blob: a4f4f61bb5ffa8a93a7e3f9f5877cab2351124d2 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18

















                                                             
#ifndef UTILITIES_HPP
#define UTILITIES_HPP

#include <filesystem>

#include <QString>

namespace fs = std::filesystem;

namespace utilities
{
    void open_containing_folder(const fs::path &path);
    QString fspath_to_qstring(const fs::path &p);
    QString fsstr_to_qstring(const fs::path::string_type &s);
    fs::path qstring_to_path(const QString &s);
};

#endif