From 6c567cbea66323ec7967b9bb8620ca025c1e2c92 Mon Sep 17 00:00:00 2001 From: avinal <185067@nith.ac.in> Date: Fri, 5 Mar 2021 01:49:06 +0530 Subject: [PATCH] main file added --- src/Main.cpp | 11 ++++++++--- 1 file changed, 8 insertions(+), 3 deletions(-) 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; }