This commit is contained in:
2023-03-08 19:23:01 -06:00
parent 9e92799698
commit ccaba7d26f
3 changed files with 33 additions and 2 deletions
+10
View File
@@ -0,0 +1,10 @@
#include "File.h"
File::File(std::string name):
name(name)
{
}
std::string File::getName() {
return name;
}