summaryrefslogtreecommitdiffstats
path: root/makelist.hpp
diff options
context:
space:
mode:
authorDees_Troy <dees_troy@teamw.in>2012-09-26 14:58:12 +0200
committerDees_Troy <dees_troy@teamw.in>2012-09-26 15:02:40 +0200
commit9df963c9cd69b499fef82fd91ef45fa4a4b86a6c (patch)
tree2ea3d4b9a655d436588c1ba7b182f829946f3de5 /makelist.hpp
parentUnify portrait layouts again (diff)
downloadandroid_bootable_recovery-9df963c9cd69b499fef82fd91ef45fa4a4b86a6c.tar
android_bootable_recovery-9df963c9cd69b499fef82fd91ef45fa4a4b86a6c.tar.gz
android_bootable_recovery-9df963c9cd69b499fef82fd91ef45fa4a4b86a6c.tar.bz2
android_bootable_recovery-9df963c9cd69b499fef82fd91ef45fa4a4b86a6c.tar.lz
android_bootable_recovery-9df963c9cd69b499fef82fd91ef45fa4a4b86a6c.tar.xz
android_bootable_recovery-9df963c9cd69b499fef82fd91ef45fa4a4b86a6c.tar.zst
android_bootable_recovery-9df963c9cd69b499fef82fd91ef45fa4a4b86a6c.zip
Diffstat (limited to '')
-rw-r--r--makelist.hpp (renamed from makelist.h)18
1 files changed, 16 insertions, 2 deletions
diff --git a/makelist.h b/makelist.hpp
index 887349cfd..6a3f6180e 100644
--- a/makelist.h
+++ b/makelist.hpp
@@ -20,7 +20,21 @@
#ifndef _MAKELIST_HEADER
#define _MAKELIST_HEADER
-int make_file_list(char* path);
+#include <string>
-#endif
+using namespace std;
+
+// Partition class
+class MakeList
+{
+public:
+ static int Make_File_List(string Path);
+
+private:
+ static int Add_Item(string Item_Name);
+ static int Generate_File_Lists(string Path);
+
+};
+
+#endif // _MAKELIST_HEADER