| 62 | std::string type_name() const override { return "example"; } |
| 63 | |
| 64 | bool Equals(const FileSystem& other) const override { |
| 65 | return type_name() == other.type_name(); |
| 66 | } |
| 67 | |
| 68 | /// \cond FALSE |
| 69 | using FileSystem::CreateDir; |
no test coverage detected