| 2243 | } |
| 2244 | |
| 2245 | bool |
| 2246 | AppInstance::saveAs(const std::string& filename) |
| 2247 | { |
| 2248 | std::string outFile = filename; |
| 2249 | std::string path = SequenceParsing::removePath(outFile); |
| 2250 | |
| 2251 | return getProject()->saveProject(QString::fromUtf8( path.c_str() ), QString::fromUtf8( outFile.c_str() ), 0); |
| 2252 | } |
| 2253 | |
| 2254 | AppInstancePtr |
| 2255 | AppInstance::loadProject(const std::string& filename) |
no test coverage detected