void NotifyAboutStartProcessing()

in tools/ROADClassesGenerator/ROADClassesGenerator/main.m [120:128]


void NotifyAboutStartProcessing(RFArgumentResolver *cmdLineArguments) {
    [RFConsole writeLine:@"Start source code processing"];
    [RFConsole writeLine:[NSString stringWithFormat:@"Source json path:%@", cmdLineArguments.sourcePath]];
    [RFConsole writeLine:[NSString stringWithFormat:@"Directory for generated code:%@", cmdLineArguments.outputDirectoryPath]];
    if (cmdLineArguments.prefix.length > 0) {
        [RFConsole writeLine:[NSString stringWithFormat:@"Prefix for generated classes names:%@", cmdLineArguments.prefix]];
    }
    [RFConsole writeLine:@""];
}