class Glob

Defined at line 18 of file ../../src/lib/files/glob.h

|Glob| is a C++ wrapper around the library function glob(3). It provides an

iterator over the globbed file paths.

Public Methods

void Glob (const std::string & path, const Options & options)

Construct a new glob for a given path.

Defined at line 9 of file ../../src/lib/files/glob.cc

void Glob (std::initializer_list<std::string> paths, const Options & options)

Construct a new glob over multiple paths at once.

Defined at line 15 of file ../../src/lib/files/glob.cc

void ~Glob ()

Defined at line 23 of file ../../src/lib/files/glob.cc

iterator begin ()

Defined at line 68 of file ../../src/lib/files/glob.h

iterator end ()

Defined at line 69 of file ../../src/lib/files/glob.h

size_t size ()

Defined at line 70 of file ../../src/lib/files/glob.h

Records