mirror of
https://github.com/J-D-K/JKSV.git
synced 2026-03-22 09:44:19 -05:00
12 lines
378 B
C++
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);
|
|
} |