| 3388 | } |
| 3389 | |
| 3390 | std::string previousDynlibPath() const { |
| 3391 | if (!previousDynlibFilename_.empty()) |
| 3392 | return buildDirectory_ + fileSep_ + previousDynlibFilename_; // #nocov |
| 3393 | else |
| 3394 | return std::string(); |
| 3395 | } |
| 3396 | |
| 3397 | const std::vector<std::string>& exportedFunctions() const { |
| 3398 | return exportedFunctions_; |
no test coverage detected