main.cpp 334 B

123456789101112131415161718
  1. #include <iostream>
  2. #include <string>
  3. #include <fstream>
  4. #include <filesystem>
  5. #include "page.h"
  6. #include "subprojects/tedi2html/tedi2html.h"
  7. #include "folder.h"
  8. using namespace std;
  9. using namespace filesystem;
  10. int main(){
  11. cout << "Matedi" <<endl;
  12. string current = current_path();
  13. folder f(current + "/parts/");
  14. f.convert();
  15. }