Advertisement
Guest User

main.cpp

a guest
Nov 29th, 2012
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.33 KB | None | 0 0
  1. #include <iostream>
  2. #include <windows.h>
  3. #include "analysis.h"
  4. #include "fileOpen.h"
  5. #include "winApp.h"
  6.  
  7. int main(int argc, char** argv) {
  8.  
  9.     bool withGui = true;
  10.     if (withGui) {
  11.         WinMake(NULL, NULL, GetCommandLine(), SW_SHOW);
  12.     } else {
  13.         analysisWrapper("path/to/image/directory");
  14.     }
  15.     return 0;
  16. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement