|
a/src/utils/fstreewalk.cpp |
|
b/src/utils/fstreewalk.cpp |
1 |
#ifndef lint
|
1 |
#ifndef lint
|
2 |
static char rcsid[] = "@(#$Id: fstreewalk.cpp,v 1.13 2007-08-28 08:08:38 dockes Exp $ (C) 2004 J.F.Dockes";
|
2 |
static char rcsid[] = "@(#$Id: fstreewalk.cpp,v 1.14 2007-08-30 09:01:52 dockes Exp $ (C) 2004 J.F.Dockes";
|
3 |
#endif
|
3 |
#endif
|
4 |
/*
|
4 |
/*
|
5 |
* This program is free software; you can redistribute it and/or modify
|
5 |
* This program is free software; you can redistribute it and/or modify
|
6 |
* it under the terms of the GNU General Public License as published by
|
6 |
* it under the terms of the GNU General Public License as published by
|
7 |
* the Free Software Foundation; either version 2 of the License, or
|
7 |
* the Free Software Foundation; either version 2 of the License, or
|
|
... |
|
... |
61 |
}
|
61 |
}
|
62 |
|
62 |
|
63 |
FsTreeWalker::~FsTreeWalker()
|
63 |
FsTreeWalker::~FsTreeWalker()
|
64 |
{
|
64 |
{
|
65 |
delete data;
|
65 |
delete data;
|
|
|
66 |
}
|
|
|
67 |
|
|
|
68 |
void FsTreeWalker::setOpts(Options opts)
|
|
|
69 |
{
|
|
|
70 |
if (data) {
|
|
|
71 |
data->options = opts;
|
|
|
72 |
}
|
66 |
}
|
73 |
}
|
67 |
|
74 |
|
68 |
string FsTreeWalker::getReason()
|
75 |
string FsTreeWalker::getReason()
|
69 |
{
|
76 |
{
|
70 |
return data->reason.str();
|
77 |
return data->reason.str();
|