diff options
author | bunnei <bunneidev@gmail.com> | 2015-02-20 11:41:30 -0500 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2015-02-20 11:41:30 -0500 |
commit | 5f9939070e81691e04facca9ff431070988e5b05 (patch) | |
tree | 9bd54cdde2c34dd2f63e0396260335f267a46ce1 /src/common/file_search.h | |
parent | c7d1480ece78126801e308fd9a9a9a1664e34428 (diff) | |
parent | 4fb75d220aeaa66d3e907cc2311acf6c29433800 (diff) |
Merge pull request #588 from archshift/somebranch
Sweeping cleanup of Common
Diffstat (limited to 'src/common/file_search.h')
-rw-r--r-- | src/common/file_search.h | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/src/common/file_search.h b/src/common/file_search.h deleted file mode 100644 index 55ca02638..000000000 --- a/src/common/file_search.h +++ /dev/null @@ -1,23 +0,0 @@ -// Copyright 2013 Dolphin Emulator Project / 2014 Citra Emulator Project -// Licensed under GPLv2 or any later version -// 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; -}; |