void NotifyAboutStartProcessing()

in tools/ROADAttributesCodeGenerator/ROADAttributesCodeGenerator/main.m [118:129]


void NotifyAboutStartProcessing(RFArgumentResolver *cmdLineArguments) {
    [RFConsole writeLine:@"Start source code processing"];
    [RFConsole writeLine:[NSString stringWithFormat:@"Source code directories:%@", cmdLineArguments.sourcePaths]];
    [RFConsole writeLine:[NSString stringWithFormat:@"Directory for generated code:%@", cmdLineArguments.destinationPath]];
    if ([cmdLineArguments.definePaths count]) {
        [RFConsole writeLine:[NSString stringWithFormat:@"Define files:%@", cmdLineArguments.definePaths]];
    }
    if ([cmdLineArguments.excludePaths count]) {
        [RFConsole writeLine:[NSString stringWithFormat:@"Exclude pathes with:%@", cmdLineArguments.excludePaths]];
    }
    [RFConsole writeLine:@""];
}