IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)

QMetaClassInfo Class

The QMetaClassInfo class provides additional information about a class.

Article lu   fois.

L'auteur

Liens sociaux

Viadeo Twitter Facebook Share on Google+   

QMetaClassInfo Class

  • Header: QMetaClassInfo

  • CMake:

    find_package(Qt6 REQUIRED COMPONENTS Core)

    target_link_libraries(mytarget PRIVATE Qt6::Core)

  • qmake: QT += core

  • Group: QMetaClassInfo is part of objectmodel

Detailed Description

Class information items are simple namevalue pairs that are specified using Q_CLASSINFO() in the source code. The information can be retrieved using name() and value(). For example:

 
Sélectionnez
class MyClass
{
    Q_OBJECT
    Q_CLASSINFO("author", "Sabrina Schweinsteiger")
    Q_CLASSINFO("url", "http://doc.moosesoft.co.uk/1.0/")

public:
    ...
};

This mechanism is free for you to use in your Qt applications.

It's also used by the Active Qt, Qt D-Bus, Qt QML, and Qt Remote Objects modules. Some keys might be set when using these modules.

See Also

See also QMetaObject

Member Function Documentation

 

const char *QMetaClassInfo::name() const

Returns the name of this item.

See Also

See also value()

const char *QMetaClassInfo::value() const

Returns the value of this item.

See Also

See also name()

Vous avez aimé ce tutoriel ? Alors partagez-le en cliquant sur les boutons suivants : Viadeo Twitter Facebook Share on Google+