15 lines
267 B
C
15 lines
267 B
C
|
#include <filesystem>
|
||
|
#include <string>
|
||
|
#include <of_path.h>
|
||
|
#include <of_str.h>
|
||
|
#include <vector>
|
||
|
|
||
|
using namespace ofen;
|
||
|
class CFileOpr
|
||
|
{
|
||
|
public:
|
||
|
CFileOpr();
|
||
|
~CFileOpr();
|
||
|
public:
|
||
|
static std::vector<std::string> get_file_list(const std::string& input);
|
||
|
};
|