mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-02 22:55:23 +00:00
LibCore: Add DirIterator::next_full_path()
This commit is contained in:
committed by
Andreas Kling
parent
e90765e957
commit
42399167b3
@@ -47,11 +47,13 @@ public:
|
||||
const char* error_string() const { return strerror(m_error); }
|
||||
bool has_next();
|
||||
String next_path();
|
||||
String next_full_path();
|
||||
|
||||
private:
|
||||
DIR* m_dir = nullptr;
|
||||
int m_error = 0;
|
||||
String m_next;
|
||||
String m_path;
|
||||
int m_flags;
|
||||
|
||||
bool advance_next();
|
||||
|
||||
Reference in New Issue
Block a user