You've already forked mariadb-columnstore-engine
mirror of
https://github.com/mariadb-corporation/mariadb-columnstore-engine.git
synced 2025-12-15 12:09:09 +03:00
28 lines
463 B
C++
28 lines
463 B
C++
|
|
#ifndef LIST_DIRECTORYTASK_H_
|
|
#define LIST_DIRECTORYTASK_H_
|
|
|
|
#include "PosixTask.h"
|
|
#include <string>
|
|
|
|
namespace storagemanager
|
|
{
|
|
|
|
class ListDirectoryTask : public PosixTask
|
|
{
|
|
public:
|
|
ListDirectoryTask(int sock, uint length);
|
|
virtual ~ListDirectoryTask();
|
|
|
|
bool run();
|
|
|
|
private:
|
|
ListDirectoryTask();
|
|
|
|
bool writeString(uint8_t *buf, int *offset, int size, const std::string &str);
|
|
};
|
|
|
|
|
|
}
|
|
#endif
|