summaryrefslogtreecommitdiffstats
path: root/makelist.hpp
diff options
context:
space:
mode:
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