libfm-qt-packaging/src/core/untrashjob.h
Alf Gaida ea757e4af0 Cherry-picking upstream release 0.12.0.
* Switched to experimental
* Bumped Standards to 4.1.1
* Fixed Symbols
* Added build dependency libexif-dev
* Added dependencies libexif-dev and libmenu-cache-dev to libfm-qt-dev
* Added override for dh_missing
* Bumped years in copyright
2017-10-22 18:15:37 +02:00

23 lines
370 B
C++

#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