| 346 | threadId( threadId ), allThreadsContinued( allThreadsContinued ) {} |
| 347 | |
| 348 | SourceContent::SourceContent( const json& body ) : |
| 349 | content( body.value( "content", "" ) ), mimeType( parseOptionalString( body, "mimeType" ) ) {} |
| 350 | |
| 351 | SourceContent::SourceContent( const std::string& path ) { |
| 352 | const FileInfo file( path ); |
nothing calls this directly
no test coverage detected