-------------------------------------------------------------------------
| 38 | |
| 39 | //------------------------------------------------------------------------- |
| 40 | Options::Options( |
| 41 | const Patterns& modulePatterns, |
| 42 | const Patterns& sourcePatterns, |
| 43 | const StartInfo* startInfo) |
| 44 | : modules_{modulePatterns} |
| 45 | , sources_{sourcePatterns} |
| 46 | , logLevel_{ LogLevel::Normal } |
| 47 | , isPluginModeEnabled_{false} |
| 48 | , isCoverChildrenModeEnabled_{false} |
| 49 | , isAggregateByFileModeEnabled_{true} |
| 50 | , isContinueAfterCppExceptionModeEnabled_{false} |
| 51 | , isOptimizedBuildSupportEnabled_{false} |
| 52 | { |
| 53 | if (startInfo) |
| 54 | optionalStartInfo_ = *startInfo; |
| 55 | } |
| 56 | |
| 57 | //------------------------------------------------------------------------- |
| 58 | Options::~Options() = default; |
nothing calls this directly
no outgoing calls
no test coverage detected