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
+11
View File
@@ -0,0 +1,11 @@
#include<string>
class File {
private:
std::string name;
public:
File(std::string);
std::string getName();
};