cpp-challenge/src/File.cpp

13 lines
167 B
C++

#include "File.h"
File::File(const std::string name):
name(name)
{
}
const std::string File::getName() const {
return name;
}
// vim: set ts=4 expandtab :