diff --git a/src/Main.cpp b/src/Main.cpp index 53d463c..a8852b3 100644 --- a/src/Main.cpp +++ b/src/Main.cpp @@ -7,9 +7,14 @@ * The driver code */ -#include -#include +#include "Utils.hpp" +using namespace MCPS; int main(int argc, char const *argv[]) { - std::cout << "Hello Encryption"; + fileop start; + auto data = start.scan_current_directory(); + + for (auto d : data) { + d.second.print(); + } return 0; }