mirror of
https://github.com/Relintai/pandemonium_engine_minimal.git
synced 2024-11-17 22:17:19 +01:00
29 lines
618 B
C++
29 lines
618 B
C++
#ifndef DIR_ACCESS_OSX_H
|
|
#define DIR_ACCESS_OSX_H
|
|
|
|
/* dir_access_osx.h */
|
|
|
|
|
|
#if defined(UNIX_ENABLED) || defined(LIBC_FILEIO_ENABLED)
|
|
|
|
#include <dirent.h>
|
|
#include <sys/stat.h>
|
|
#include <sys/types.h>
|
|
#include <unistd.h>
|
|
|
|
#include "core/os/dir_access.h"
|
|
#include "drivers/unix/dir_access_unix.h"
|
|
|
|
class DirAccessOSX : public DirAccessUnix {
|
|
protected:
|
|
virtual String fix_unicode_name(const char *p_name) const;
|
|
|
|
virtual int get_drive_count();
|
|
virtual String get_drive(int p_drive);
|
|
|
|
virtual bool is_hidden(const String &p_name);
|
|
};
|
|
|
|
#endif //UNIX ENABLED
|
|
#endif
|