#pragma once #include "appstates/FileOptionState.hpp" #include "sys/sys.hpp" namespace tasks::fileoptions { /// @brief Copies the source to destination passed through taskData. void copy_source_to_destination(sys::threadpool::JobData taskData); /// @brief Deletes the source path passed through taskData void delete_target(sys::threadpool::JobData taskData); }