mirror of
https://codeberg.org/comaps/comaps
synced 2025-12-19 13:03:36 +00:00
committed by
Konstantin Pastbin
parent
c9cbb64f12
commit
76ffc99abd
13
libs/platform/platform_unix_impl.hpp
Normal file
13
libs/platform/platform_unix_impl.hpp
Normal file
@@ -0,0 +1,13 @@
|
||||
#pragma once
|
||||
|
||||
#include <functional>
|
||||
#include <string>
|
||||
#include <vector>
|
||||
|
||||
namespace pl
|
||||
{
|
||||
void EnumerateFiles(std::string const & directory, std::function<void(char const *)> const & fn);
|
||||
|
||||
void EnumerateFilesByRegExp(std::string const & directory, std::string const & regexp,
|
||||
std::vector<std::string> & res);
|
||||
} // namespace pl
|
||||
Reference in New Issue
Block a user