* 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
23 lines
370 B
C++
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
|