mirror of
https://github.com/EQEmu/Server.git
synced 2025-12-11 21:01:29 +00:00
20 lines
264 B
C++
20 lines
264 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
|
|
namespace EQ {
|
|
class Directory
|
|
{
|
|
public:
|
|
Directory(const std::string &path);
|
|
~Directory();
|
|
|
|
bool Exists();
|
|
void GetFiles(std::vector<std::string> &files);
|
|
private:
|
|
struct impl;
|
|
impl *m_impl;
|
|
};
|
|
}
|