Make WvStreams compile with gcc 4.4.
[wvstreams.git] / include / wvglobdiriter.h
blob6c75a4409421b685a802e657904ef0d1d96db985
1 /* -*- Mode: C++ -*-
2 * Worldvisions Weaver Software:
3 * Copyright (C) 1997-2002 Net Integration Technologies, Inc.
5 * Directory iterator. Recursively uses opendir and readdir, so you don't
6 * have to. Basically implements 'find'.
8 */
10 #ifndef __WVGLOBDIRITER_H
11 #define __WVGLOBDIRITER_H
13 #include "wvdiriter.h"
15 class WvGlob;
17 class WvGlobDirIter : public WvDirIter
20 private:
22 WvGlob *glob;
24 public:
26 WvGlobDirIter( WvStringParm dirname, WvStringParm globstr,
27 bool _recurse = true, bool _skip_mounts = false,
28 size_t sizeof_stat = sizeof(struct stat) );
29 ~WvGlobDirIter();
31 bool next();
35 #endif