Commit 4b8d8a18 authored by Maysam Rahmanpour's avatar Maysam Rahmanpour
Browse files

Added find_path header

parent e08a0800
Loading
Loading
Loading
Loading
Loading
+18 −0
Original line number Diff line number Diff line
#ifndef FIND_PATH_HPP
#define FIND_PATH_HPP

#include <string>
#include <vector>


void init_cached_files();

/**
 * @brief Check if the file needs to be cached or not.
 * 
 * @param path The path of the file.
 * @return true if the file needs to be cached, false otherwise.
 */
bool cached_file(const std::string& path);

#endif // FIND_PATH_HPP