Skip to content

Commit

Permalink
display output around extracting and parsing
Browse files Browse the repository at this point in the history
  • Loading branch information
nam20485 committed Oct 6, 2023
1 parent 649abe5 commit cf6ccbe
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions OdbDesignApp/OdbDesignApp.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -22,15 +22,15 @@ int main()
return (int) ExitCode::UnknownError;
}

std::cout << "success!" << std::endl;
//std::cout << "success!" << std::endl;

success = TestSampleDesign();
if (!success)
{
return (int) ExitCode::UnknownError;
}

std::cout << "success!" << std::endl;
//std::cout << "success!" << std::endl;

return (int) ExitCode::Success;
}
Expand All @@ -47,7 +47,7 @@ bool TestSampleDesign()
sampleDesignPath = R"(/mnt/c/Users/nmill/OneDrive/Documents/ODB++/Samples/sample_design.tgz)";
}

std::cout << "Parsing " << sampleDesignPath << "... ";
std::cout << "Processing " << sampleDesignPath << "... " << std::endl;

Odb::Lib::FileModel::Design::FileArchive sampleOdbDesign(sampleDesignPath);
auto success = sampleOdbDesign.ParseFileModel();
Expand All @@ -71,7 +71,7 @@ bool TestRigidFlexDesign()
rigidFlexDesignPath = R"(/mnt/c/Users/nmill/OneDrive/Documents/ODB++/Samples/designodb_rigidflex.tgz)";
}

std::cout << "Parsing " << rigidFlexDesignPath << "... ";
std::cout << "Processing " << rigidFlexDesignPath << "... " << std::endl;

Odb::Lib::FileModel::Design::FileArchive rigidFlexOdbDesign(rigidFlexDesignPath);
auto success = rigidFlexOdbDesign.ParseFileModel();
Expand Down

0 comments on commit cf6ccbe

Please sign in to comment.