blob: 96ac394eddd377efd5c779aca295f96034c0a058 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
#if !defined(SUBDIR_H)
#define SUBDIR_H
#include <strings.h>
#include <string>
#include <unistd.h>
#include "ReturnValues.h"
#include "Constants.h"
#include "FilesInDir.h"
#include "MountArray.h"
using namespace std;
class Subdir_var
{
public:
Subdir_var ();
string cur_path;
FilesInDir *pfid;
};
class SubDir:public CountFilesSumBytes
{
public:
ReturnValues return_values;
SubDir (string, string, MountArray *);
~SubDir ();
void subdirinfo ();
int hilevel, level;
string DirString;
MountArray *Mlist;
Subdir_var *Svar[LEVELS];
struct stat Status;
};
#endif // #define SUBDIR_H
|