JKSV/include/tasks/fileoptions.hpp
2025-09-16 17:59:33 -04:00

12 lines
378 B
C++

#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);
}