mirror of
https://github.com/pocoproject/poco.git
synced 2025-02-06 12:56:55 +01:00
code style and doc fixes
This commit is contained in:
parent
e7fb853c7d
commit
92c607e767
@ -66,9 +66,8 @@ public:
|
|||||||
|
|
||||||
enum
|
enum
|
||||||
{
|
{
|
||||||
D_INFINITE = 0
|
D_INFINITE = 0 /// Constant for infinite traverse depth.
|
||||||
};
|
};
|
||||||
/// Constant for infinite traverse depth.
|
|
||||||
|
|
||||||
RecursiveDirectoryIterator()
|
RecursiveDirectoryIterator()
|
||||||
/// Creates the end iterator.
|
/// Creates the end iterator.
|
||||||
@ -82,28 +81,28 @@ public:
|
|||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
RecursiveDirectoryIterator(const MyType& iterator)
|
RecursiveDirectoryIterator(const MyType& iterator):
|
||||||
/// Creates a copy of another recursive directory iterator.
|
/// Creates a copy of another recursive directory iterator.
|
||||||
: _pImpl(iterator._pImpl), _path(iterator._path), _file(iterator._file)
|
_pImpl(iterator._pImpl), _path(iterator._path), _file(iterator._file)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
RecursiveDirectoryIterator(const DirectoryIterator& iterator, UInt16 maxDepth = D_INFINITE)
|
RecursiveDirectoryIterator(const DirectoryIterator& iterator, UInt16 maxDepth = D_INFINITE):
|
||||||
/// Creates a recursive directory iterator for the path of
|
/// Creates a recursive directory iterator for the path of
|
||||||
/// non-recursive directory iterator.
|
/// non-recursive directory iterator.
|
||||||
: _pImpl(new ImplType(iterator->path(), maxDepth)), _path(Path(_pImpl->get())), _file(_path)
|
_pImpl(new ImplType(iterator->path(), maxDepth)), _path(Path(_pImpl->get())), _file(_path)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
RecursiveDirectoryIterator(const File& file, UInt16 maxDepth = D_INFINITE)
|
RecursiveDirectoryIterator(const File& file, UInt16 maxDepth = D_INFINITE):
|
||||||
/// Creates a recursive directory iterator for the given path.
|
/// Creates a recursive directory iterator for the given path.
|
||||||
: _pImpl(new ImplType(file.path(), maxDepth)), _path(Path(_pImpl->get())), _file(_path)
|
_pImpl(new ImplType(file.path(), maxDepth)), _path(Path(_pImpl->get())), _file(_path)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
RecursiveDirectoryIterator(const Path& path, UInt16 maxDepth = D_INFINITE)
|
RecursiveDirectoryIterator(const Path& path, UInt16 maxDepth = D_INFINITE):
|
||||||
/// Creates a recursive directory iterator for the given path.
|
/// Creates a recursive directory iterator for the given path.
|
||||||
: _pImpl(new ImplType(path.toString(), maxDepth)), _path(Path(_pImpl->get())), _file(_path)
|
_pImpl(new ImplType(path.toString(), maxDepth)), _path(Path(_pImpl->get())), _file(_path)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user