| 144 | class Directory : public std::string, public virtual Object { |
| 145 | public: |
| 146 | Directory(const std::string& value) : std::string(value) {} |
| 147 | Directory(const char* value) : std::string(value) {} |
| 148 | Directory(Directory&& other) : std::string(std::move(other)), name(std::move(other.name)), extPos(other.extPos) {} |
| 149 | std::string name; |
nothing calls this directly
no outgoing calls
no test coverage detected