mirror of
https://github.com/MaskRay/ccls.git
synced 2024-11-26 01:21:57 +00:00
13 lines
343 B
C++
13 lines
343 B
C++
#pragma once
|
|
|
|
#include <experimental/filesystem>
|
|
#include <functional>
|
|
#include <string>
|
|
|
|
namespace fs = std::experimental::filesystem;
|
|
|
|
void GetFilesInFolder(std::string folder,
|
|
bool recursive,
|
|
bool add_folder_to_path,
|
|
const std::function<void(const std::string&)>& handler);
|