Files
maxDcb-C2Core/modules/Tree/Tree.hpp
T
Maxime DE CAUMIA BAILLENX 0c72e5a5d1 Add 2 Modules and defautl path
2023-06-13 15:15:15 +02:00

29 lines
419 B
C++

#pragma once
#include "ModuleCmd.hpp"
class Tree : public ModuleCmd
{
public:
Tree();
~Tree();
std::string getInfo();
int init(std::vector<std::string>& splitedCmd, C2Message& c2Message);
int process(C2Message& c2Message, C2Message& c2RetMessage);
private:
std::string iterProcess(const std::string& path, int depth);
};
#ifdef _WIN32
extern "C" __declspec(dllexport) Tree * TreeConstructor();
#endif