17 lines
310 B
C++
17 lines
310 B
C++
#ifndef EZ_APACHE_H
|
|
#define EZ_APACHE_H
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
#include "http/httplib.h"
|
|
#include "clients/remote_client.h"
|
|
#include "clients/baseclient.h"
|
|
#include "common.h"
|
|
|
|
class ApacheClient : public BaseClient
|
|
{
|
|
public:
|
|
std::vector<DirEntry> ListDir(const std::string &path);
|
|
};
|
|
|
|
#endif |