You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
libfm-qt-packaging/src/core/untrashjob.h

23 lines
370 B

#ifndef FM2_UNTRASHJOB_H
#define FM2_UNTRASHJOB_H
#include "../libfmqtglobals.h"
#include "fileoperationjob.h"
namespace Fm {
class LIBFM_QT_API UntrashJob : public Fm::FileOperationJob {
public:
explicit UntrashJob();
protected:
void exec() override;
private:
bool ensure_parent_dir(GFile *orig_path);
};
} // namespace Fm
#endif // FM2_UNTRASHJOB_H