summaryrefslogtreecommitdiffstats
path: root/find_file.hpp
diff options
context:
space:
mode:
authorEthan Yonker <dees_troy@teamw.in>2014-04-09 21:29:02 +0200
committerGerrit Code Review <gerrit2@gerrit>2014-04-15 15:26:44 +0200
commit00028b4adbe1475fe799a7cec148b37182ac5e9f (patch)
tree9b132f947eab70fa9ab685e751f017860f522636 /find_file.hpp
parentFix touch on Sprint HTC One m8 (diff)
downloadandroid_bootable_recovery-00028b4adbe1475fe799a7cec148b37182ac5e9f.tar
android_bootable_recovery-00028b4adbe1475fe799a7cec148b37182ac5e9f.tar.gz
android_bootable_recovery-00028b4adbe1475fe799a7cec148b37182ac5e9f.tar.bz2
android_bootable_recovery-00028b4adbe1475fe799a7cec148b37182ac5e9f.tar.lz
android_bootable_recovery-00028b4adbe1475fe799a7cec148b37182ac5e9f.tar.xz
android_bootable_recovery-00028b4adbe1475fe799a7cec148b37182ac5e9f.tar.zst
android_bootable_recovery-00028b4adbe1475fe799a7cec148b37182ac5e9f.zip
Diffstat (limited to 'find_file.hpp')
-rw-r--r--find_file.hpp37
1 files changed, 37 insertions, 0 deletions
diff --git a/find_file.hpp b/find_file.hpp
new file mode 100644
index 000000000..8833e9ad2
--- /dev/null
+++ b/find_file.hpp
@@ -0,0 +1,37 @@
+/*
+ Copyright 2014 TeamWin
+ This file is part of TWRP/TeamWin Recovery Project.
+
+ TWRP is free software: you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+
+ TWRP is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with TWRP. If not, see <http://www.gnu.org/licenses/>.
+*/
+
+#ifndef Find_File_HPP
+#define Find_File_HPP
+
+#include <string>
+#include <vector>
+
+using namespace std;
+
+class Find_File {
+
+public:
+ static string Find(const string& file_name, const string& start_path);
+private:
+ Find_File();
+ string Find_Internal(const string& filename, const string& starting_path);
+ vector<string> searched_dirs;
+};
+
+#endif