コード例 #1
0
ファイル: ModelManager.cs プロジェクト: jTitor/leek
 /**
  * true iff model successfully written
  */
 public bool SaveModel(string path)
 {
     if (!FileSystemOps.PathIsValid(path))
     {
         return(false);
     }
     ImporterOps.ExportModel(path, 1);
     updateLog();
     return(true);
 }