| 781 | } |
| 782 | |
| 783 | bool DocumentObject::isInputProperty(const std::string& propName) const |
| 784 | { |
| 785 | Property* prop = getPropertyByName(propName.c_str()); |
| 786 | if (!prop) { |
| 787 | return false; |
| 788 | } |
| 789 | return isInputProperty(prop); |
| 790 | } |
| 791 | |
| 792 | bool DocumentObject::isInputProperty(const Property* prop) const |
| 793 | { |
no test coverage detected