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

Method PrintInfo

Utilities/MetaIO/vtkmetaio/metaArray.cxx:118–142  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

116
117//
118void
119MetaArray::PrintInfo() const
120{
121 MetaForm::PrintInfo();
122
123 std::cout << "Length = " << m_Length << std::endl;
124
125 std::cout << "BinaryData = " << ((m_BinaryData) ? "True" : "False") << std::endl;
126
127 std::cout << "BinaryDataByteOrderMSB = " << ((m_BinaryDataByteOrderMSB) ? "True" : "False") << std::endl;
128
129 char str[255];
130 MET_TypeToString(m_ElementType, str);
131 std::cout << "ElementType = " << str << std::endl;
132
133 std::cout << "ElementNumberOfChannels = " << m_ElementNumberOfChannels << std::endl;
134
135 std::cout << "AutoFreeElementData = " << ((m_AutoFreeElementData) ? "True" : "False") << std::endl;
136
137 std::cout << "CompressedElementDataSize = " << m_CompressedElementDataSize << std::endl;
138
139 std::cout << "ElementDataFileName = " << m_ElementDataFileName << std::endl;
140
141 std::cout << "ElementData = " << ((m_ElementData == nullptr) ? "NULL" : "Valid") << std::endl;
142}
143
144void
145MetaArray::CopyInfo(const MetaForm * _form)

Callers

nothing calls this directly

Calls 2

PrintInfoFunction · 0.85
MET_TypeToStringFunction · 0.85

Tested by

no test coverage detected