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

Function isExportFiltered

Engine/source/console/engineXMLExport.cpp:74–83  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

72};
73
74static bool isExportFiltered( const EngineExport* exportInfo )
75{
76 String qualifiedName = exportInfo->getFullyQualifiedExportName();
77
78 for( U32 i = 0; i < ( sizeof( sExportFilterList ) / sizeof( sExportFilterList[ 0 ] ) ); ++ i )
79 if( qualifiedName.compare( sExportFilterList[ i ] ) == 0 )
80 return true;
81
82 return false;
83}
84
85//=============================================================================
86// Functions.

Callers 3

exportFunctionFunction · 0.85
exportTypeFunction · 0.85
exportScopeFunction · 0.85

Calls 2

compareMethod · 0.45

Tested by

no test coverage detected