First step for copy constructor

This commit is contained in:
iutbgdin
2025-06-18 15:09:29 +02:00
parent 9b02342369
commit 7ce7ca9df5
3 changed files with 19 additions and 2 deletions
+13
View File
@@ -0,0 +1,13 @@
#include "path.h"
Path::Path(QFile *file){
QTextStream in(&file);
QString text = in.readAll();
ui->textEdit->setText(text);
file.close();
}
void Path::addStep(){
}