Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 1 | /* This program is free software; you can redistribute it and/or modify |
| 2 | * it under the terms of the GNU General Public License version 2 and |
| 3 | * only version 2 as published by the Free Software Foundation. |
| 4 | * |
| 5 | * This program is distributed in the hope that it will be useful, |
| 6 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 7 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 8 | * GNU General Public License for more details. |
| 9 | * |
| 10 | * You should have received a copy of the GNU General Public License |
| 11 | * along with this program; if not, write to the Free Software |
| 12 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA |
| 13 | * 02110-1301, USA. |
| 14 | * |
| 15 | * The code was written from scratch by Dees_Troy dees_troy at |
| 16 | * yahoo |
| 17 | * |
| 18 | * Copyright (c) 2012 |
| 19 | */ |
| 20 | #ifndef _MAKELIST_HEADER |
| 21 | #define _MAKELIST_HEADER |
| 22 | |
Dees_Troy | 9df963c | 2012-09-26 08:58:12 -0400 | [diff] [blame] | 23 | #include <string> |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 24 | |
Dees_Troy | 9df963c | 2012-09-26 08:58:12 -0400 | [diff] [blame] | 25 | using namespace std; |
| 26 | |
| 27 | // Partition class |
| 28 | class MakeList |
| 29 | { |
| 30 | public: |
| 31 | static int Make_File_List(string Path); |
| 32 | |
| 33 | private: |
| 34 | static int Add_Item(string Item_Name); |
| 35 | static int Generate_File_Lists(string Path); |
| 36 | |
| 37 | }; |
| 38 | |
| 39 | #endif // _MAKELIST_HEADER |
Dees_Troy | 51a0e82 | 2012-09-05 15:24:24 -0400 | [diff] [blame] | 40 | |