Files
Krypto/src/Main.cpp

21 lines
355 B
C++
Raw Normal View History

2021-02-18 22:09:51 +05:30
/**
* /mnt/z/my_git/RCRS-CSD-327/src/Main.cpp
* @file Main.cpp
* @author Avinal Kumar
* @since February 18, 2021
*
* The driver code
*/
2021-03-05 01:49:06 +05:30
#include "Utils.hpp"
using namespace MCPS;
2021-02-18 22:09:51 +05:30
int main(int argc, char const *argv[]) {
2021-03-05 01:49:06 +05:30
fileop start;
auto data = start.scan_current_directory();
for (auto d : data) {
d.second.print();
}
2021-02-18 22:09:51 +05:30
return 0;
}