Advertisement
Guest User

Untitled

a guest
Jun 23rd, 2017
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.58 KB | None | 0 0
  1.  else if (0 == strcmp(argv[1], "eulumdat")) {
  2.             string projectFileName;
  3.             string resultFileName;
  4.             if (argc == 2) {
  5.                 projectFileName = "project.xml";
  6.                 resultFileName = "optimalizalo.ldt";
  7.             }
  8.             if (argc == 3) {
  9.                 projectFileName = "project.xml";
  10.                 resultFileName = argv[2];
  11.             }
  12.             if (argc >= 4) {
  13.                 projectFileName= argv[2];
  14.                 resultFileName = argv[3];
  15.             }
  16.             runEulumdat(projectFileName, resultFileName);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement