_ZNK13QMetaProperty12hasStdCppSetEv

Name

QMetaProperty::hasStdCppSet -- check if a property follows "name" / "ssetName" pattern

Synopsis


#include <QtCore/qmetaobject.h>

bool QMetaProperty::hasStdCppSet(void);

Description

The QMetaProperty::hasStdCppSet() function shall return true if the property has a C++ setter function that follows Qt's standard "name" / "setName" pattern. This function can be queried in order to avoid expensive QObject::setProperty() calls. All properties in Qt should follow the pattern mentioned.

This function is not intended to be used used by applications directly, but may appear among application dependencies as a result of usage of other functions and macros.