Some changes to directory code to help it compile on newer gcc compilers

This commit is contained in:
KimLS
2017-06-10 22:23:27 -07:00
parent 6575d106de
commit 995a4527da
2 changed files with 16 additions and 10 deletions
+2 -3
View File
@@ -3,8 +3,6 @@
#include <string>
#include <vector>
struct DIR;
namespace EQ {
class Directory
{
@@ -15,6 +13,7 @@ namespace EQ {
bool Exists();
void GetFiles(std::vector<std::string> &files);
private:
DIR *m_dir;
struct impl;
impl *m_impl;
};
}