MCPcopy Create free account
hub / github.com/Kitware/VTK / MET_TypeToString

Function MET_TypeToString

Utilities/MetaIO/vtkmetaio/metaUtils.cxx:240–251  ·  view source on GitHub ↗

METType To String

Source from the content-addressed store, hash-verified

238// METType To String
239//
240bool
241MET_TypeToString(MET_ValueEnumType _vType, char * _s)
242{
243 assert(_vType >= 0);
244 if (_vType < MET_NUM_VALUE_TYPES)
245 {
246 strcpy(_s, MET_ValueTypeName[_vType]);
247 return true;
248 }
249
250 return false;
251}
252
253
254//

Callers 15

PrintInfoMethod · 0.85
M_SetupWriteFieldsMethod · 0.85
PrintInfoMethod · 0.85
M_SetupWriteFieldsMethod · 0.85
PrintInfoMethod · 0.85
PrintInfoMethod · 0.85
M_SetupWriteFieldsMethod · 0.85
PrintInfoMethod · 0.85
PrintInfoMethod · 0.85
M_SetupWriteFieldsMethod · 0.85
PrintInfoMethod · 0.85
M_SetupWriteFieldsMethod · 0.85

Calls 1

assertFunction · 0.50

Tested by

no test coverage detected