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