mirror of
https://github.com/EQEmu/Server.git
synced 2026-01-04 03:13:52 +00:00
21 lines
260 B
C++
21 lines
260 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
struct DIR;
|
|
|
|
namespace EQ {
|
|
class Directory
|
|
{
|
|
public:
|
|
Directory(const std::string &path);
|
|
~Directory();
|
|
|
|
bool Exists();
|
|
void GetFiles(std::vector<std::string> &files);
|
|
private:
|
|
DIR *m_dir;
|
|
};
|
|
}
|