|
| not_mask (const mask &m) |
| the constructor to be used by libdar external programs
|
|
| not_mask (const not_mask &m) |
| copy constructor
|
|
| not_mask (not_mask &&m) noexcept |
| move constructor
|
|
not_mask & | operator= (const not_mask &m) |
| assignment operator
|
|
not_mask & | operator= (not_mask &&m) noexcept |
| move operator
|
|
| ~not_mask () |
| destructor
|
|
bool | is_covered (const std::string &expression) const override |
| inherited from the mask class
|
|
bool | is_covered (const path &chemin) const override |
| check whether the given path is covered by the mask
|
|
std::string | dump (const std::string &prefix) const override |
| dump in human readable form the nature of the mask
|
|
mask * | clone () const override |
| inherited from the mask class
|
|
| mask (const mask &ref)=default |
|
| mask (mask &&ref) noexcept=default |
|
mask & | operator= (const mask &ref)=default |
|
mask & | operator= (mask &&ref) noexcept=default |
|
virtual bool | is_covered (const std::string &expression) const =0 |
| check wether the given string is covered by the mask
|
|
virtual bool | is_covered (const path &chemin) const |
| check whether the given path is covered by the mask
|
|
virtual std::string | dump (const std::string &prefix="") const =0 |
| dump in human readable form the nature of the mask
|
|
virtual mask * | clone () const =0 |
|
negation of another mask
this is the first mask built over masks it realizes the negation of the given mask
Definition at line 226 of file mask.hpp.