| 2218 | } |
| 2219 | |
| 2220 | bool |
| 2221 | AppInstance::saveTemp(const std::string& filename) |
| 2222 | { |
| 2223 | std::string outFile = filename; |
| 2224 | std::string path = SequenceParsing::removePath(outFile); |
| 2225 | ProjectPtr project = getProject(); |
| 2226 | |
| 2227 | return project->saveProject_imp(QString::fromUtf8( path.c_str() ), QString::fromUtf8( outFile.c_str() ), false, false, 0); |
| 2228 | } |
| 2229 | |
| 2230 | bool |
| 2231 | AppInstance::save(const std::string& filename) |
no test coverage detected