Loading include/client/direct_created.hpp 0 → 100644 +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 Loading
include/client/direct_created.hpp 0 → 100644 +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