The QMetaClassInfo class provides additional information about a 类。 更多...
The QMetaClassInfo class provides additional information about a 类。
类信息项是简单的 name -- value 对,其被指定使用 Q_CLASSINFO () in the source code. The information can be retrieved using name () 和 value ()。例如:
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. Qt doesn't use it for any of its classes.
返回此项的名称。
另请参阅 value ().
返回此项的值。
另请参阅 name ().