blob: 6a3f6180e47de7ad004ce9d7f2f6973654aa841d [file] [log] [blame]
Dees_Troy51a0e822012-09-05 15:24:24 -04001/* 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_Troy9df963c2012-09-26 08:58:12 -040023#include <string>
Dees_Troy51a0e822012-09-05 15:24:24 -040024
Dees_Troy9df963c2012-09-26 08:58:12 -040025using namespace std;
26
27// Partition class
28class MakeList
29{
30public:
31 static int Make_File_List(string Path);
32
33private:
34 static int Add_Item(string Item_Name);
35 static int Generate_File_Lists(string Path);
36
37};
38
39#endif // _MAKELIST_HEADER
Dees_Troy51a0e822012-09-05 15:24:24 -040040