123456789101112131415161718 |
- #include <iostream>
- #include <string>
- #include <fstream>
- #include <filesystem>
- #include "page.h"
- #include "subprojects/tedi2html/tedi2html.h"
- #include "folder.h"
- using namespace std;
- using namespace filesystem;
- int main(){
-
- cout << "Matedi" <<endl;
- string current = current_path();
- folder f(current + "/parts/");
- f.convert();
- }
|