| 1042 | } |
| 1043 | |
| 1044 | bool IdfObject_Impl::isDataField(unsigned index) const { |
| 1045 | if (index >= numFields()) { |
| 1046 | return false; |
| 1047 | } |
| 1048 | return (!isObjectListField(index) && (index > 0 || !m_iddObject.hasHandleField())); |
| 1049 | } |
| 1050 | |
| 1051 | std::vector<unsigned> IdfObject_Impl::dataFields() const { |
| 1052 | UnsignedVector result; |
nothing calls this directly
no test coverage detected