MCPcopy Create free account
hub / github.com/TorqueGameEngines/Torque3D / dumpGroupStart

Function dumpGroupStart

Engine/source/console/engineDoc.cpp:439–455  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

437}
438
439static void dumpGroupStart( Stream &stream,
440 const char *aName,
441 const char *aDocs = NULL )
442{
443 stream.writeText( String::ToString( "\r\n/*! @name %s\r\n", aName ) );
444
445 if ( aDocs )
446 {
447 stream.writeText( aDocs );
448 stream.writeText( "\r\n" );
449 }
450
451 stream.writeText( "@{ */\r\n" );
452
453 // Add a blank comment in order to make sure groups are parsed properly.
454 //Con::printf(" /*! */");
455}
456
457static void dumpGroupEnd( Stream &stream )
458{

Callers 2

dumpClassesFunction · 0.85
dumpEngineDocsFunction · 0.85

Calls 1

writeTextMethod · 0.45

Tested by

no test coverage detected