Set skip specials to true by default.

This commit is contained in:
Relintai 2022-02-04 23:27:37 +01:00
parent d71db48661
commit ef06a9e57d

View File

@ -10,8 +10,8 @@
class Directory : public Reference {
RCPP_OBJECT(Directory, Reference);
public:
Error open(const String &path, bool skip_specials = false);
Error open(const char *path, bool skip_specials = false);
Error open(const String &path, bool skip_specials = true);
Error open(const char *path, bool skip_specials = true);
void close();
bool has_next();