| 120 | namespace editor |
| 121 | { |
| 122 | std::shared_ptr<Notes> Notes::MakeNotes(std::string const & fileName, bool const fullPath) |
| 123 | { |
| 124 | return std::shared_ptr<Notes>(new Notes(fullPath ? fileName : GetPlatform().WritablePathForFile(fileName))); |
| 125 | } |
| 126 | |
| 127 | Notes::Notes(std::string const & fileName) : m_fileName(fileName) |
| 128 | { |
nothing calls this directly
no test coverage detected