Rename Status enum for avoid conficts on Linux.

This commit is contained in:
LuisAntonRebollo 2014-04-06 22:14:19 +02:00
parent 938e28b6f3
commit 4a17d6ceb0
10 changed files with 43 additions and 43 deletions

View file

@ -65,7 +65,7 @@ public:
~Win32File();
Path getName() const;
Status getStatus() const;
NodeStatus getStatus() const;
bool getAttributes(Attributes*);
U64 getSize();
@ -86,7 +86,7 @@ private:
Path mPath;
String mName;
void *mHandle;
Status mStatus;
NodeStatus mStatus;
Win32File(const Path &path, String name);
@ -103,7 +103,7 @@ public:
~Win32Directory();
Path getName() const;
Status getStatus() const;
NodeStatus getStatus() const;
bool getAttributes(Attributes*);
bool open();
@ -118,7 +118,7 @@ private:
Path mPath;
String mName;
void *mHandle;
Status mStatus;
NodeStatus mStatus;
Win32Directory(const Path &path,String name);