| 40 | #endif |
| 41 | |
| 42 | CommandLine::CommandLine(void) |
| 43 | : filesize_cache() |
| 44 | , version(verUnknown) |
| 45 | , noiselevel(nlUnknown) |
| 46 | , memorylimit(0) |
| 47 | , basepath() |
| 48 | #ifdef _OPENMP |
| 49 | , nthreads(0) // 0 means use default number |
| 50 | , filethreads( _FILE_THREADS ) // default from header file |
| 51 | #endif |
| 52 | , parfilename() |
| 53 | , rawfilenames() |
| 54 | , extrafiles() |
| 55 | , operation(opNone) |
| 56 | , purgefiles(false) |
| 57 | , renameonly(false) |
| 58 | , skipdata(false) |
| 59 | , skipleaway(0) |
| 60 | , blockcount(0) |
| 61 | , blocksize(0) |
| 62 | , firstblock(0) |
| 63 | , recoveryfilescheme(scUnknown) |
| 64 | , recoveryfilecount(0) |
| 65 | , recoveryblockcount(0) |
| 66 | , recoveryblockcountset(false) |
| 67 | , redundancy(0) |
| 68 | , redundancysize(0) |
| 69 | , redundancyset(false) |
| 70 | , recursive(false) |
| 71 | { |
| 72 | } |
| 73 | |
| 74 | void CommandLine::showversion(void) |
| 75 | { |
nothing calls this directly
no outgoing calls
no test coverage detected