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