mirror of
https://git.suyu.dev/suyu/suyu
synced 2024-11-02 05:17:52 +00:00
90e994471a
Also replaced C headers with the C++ equivalent ones
23 lines
509 B
C++
23 lines
509 B
C++
// Copyright 2013 Dolphin Emulator Project
|
|
// Licensed under GPLv2
|
|
// Refer to the license.txt file included.
|
|
|
|
#pragma once
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
class CFileSearch
|
|
{
|
|
public:
|
|
typedef std::vector<std::string>XStringVector;
|
|
|
|
CFileSearch(const XStringVector& _rSearchStrings, const XStringVector& _rDirectories);
|
|
const XStringVector& GetFileNames() const;
|
|
|
|
private:
|
|
|
|
void FindFiles(const std::string& _searchString, const std::string& _strPath);
|
|
|
|
XStringVector m_FileNames;
|
|
};
|