Commit 86e39fca authored by Maysam Rahmanpour's avatar Maysam Rahmanpour
Browse files

Add direct_created header

parent 76f2d5c6
Loading
Loading
Loading
Loading
Loading
+32 −0
Original line number Diff line number Diff line
#ifndef DIRECT_CREATED_HPP
#define DIRECT_CREATED_HPP

#include <string>
#include <vector>

/**
 * @brief Add a path to the removed path set
 * 
 * @param path The path of the file.
 *
 */
void add_dc_path(const std::string& path);

/**
 * @brief Remove a path from the removed path set
 * 
 * @param path The path of the file.
 * 
 */
void remove_dc_path(const std::string& path);

/**
 * @brief Check if the path exists in the removed path set
 * 
 * @param path The path of the file.
 * @return true if the path exists, false if it doesn't.
 * 
 */
bool dc_check_path(const std::string& path);

#endif // DIRECT_CREATED_HPP
 No newline at end of file