2013-09-04 20:17:46 -04:00
|
|
|
// Copyright 2013 Dolphin Emulator Project
|
|
|
|
// Licensed under GPLv2
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef _FILESEARCH_H_
|
|
|
|
#define _FILESEARCH_H_
|
|
|
|
|
|
|
|
#include <string>
|
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
class CFileSearch
|
|
|
|
{
|
|
|
|
public:
|
2014-04-01 18:20:08 -04:00
|
|
|
typedef std::vector<std::string>XStringVector;
|
2013-09-04 20:17:46 -04:00
|
|
|
|
2014-04-01 18:20:08 -04:00
|
|
|
CFileSearch(const XStringVector& _rSearchStrings, const XStringVector& _rDirectories);
|
|
|
|
const XStringVector& GetFileNames() const;
|
2013-09-04 20:17:46 -04:00
|
|
|
|
|
|
|
private:
|
|
|
|
|
2014-04-01 18:20:08 -04:00
|
|
|
void FindFiles(const std::string& _searchString, const std::string& _strPath);
|
2013-09-04 20:17:46 -04:00
|
|
|
|
2014-04-01 18:20:08 -04:00
|
|
|
XStringVector m_FileNames;
|
2013-09-04 20:17:46 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // _FILESEARCH_H_
|
|
|
|
|