MCPcopy Create free account
hub / github.com/GarageGames/Torque3D / printClassMember

Function printClassMember

Engine/source/console/consoleDoc.cpp:188–204  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

186}
187
188void printClassMember(const bool isDeprec, const char * aType, const char * aName, const char * aDocs)
189{
190 Con::printf(" /*!");
191
192 if(aDocs)
193 {
194 Con::printf(" %s", aDocs);
195 Con::printf(" ");
196 }
197
198 if(isDeprec)
199 Con::printf(" @deprecated This member is deprecated, which means that its value is always undefined.");
200
201 Con::printf(" */");
202
203 Con::printf(" %s %s;", isDeprec ? "deprecated" : aType, aName);
204}
205
206void printGroupEnd()
207{

Callers 1

dumpClassesMethod · 0.85

Calls 1

printfFunction · 0.85

Tested by

no test coverage detected