Qt:Документация 4.3.2/qmetaclassinfo

Материал из Wiki.crossplatform.ru

Перейти к: навигация, поиск
40px Внимание: Актуальная версия перевода документации находится здесь

__NOTOC__

Image:qt-logo.png

Главная · Все классы · Основные классы · Классы по группам · Модули · Функции

Image:trolltech-logo.png

Содержание

[править] QMetaClassInfo Class Reference
[модуль QtCore ]

The QMetaClassInfo class provides additional information about a class. Далее...

 #include <QMetaClassInfo>

[править] Открытые функции

  • const char * name () const
  • const char * value () const

[править] Подробное описание

The QMetaClassInfo class provides additional information about a class.

Class information items are simple name--value pairs that are specified using Q_CLASSINFO() in the source code. The information can be retrieved using name() and 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.

See also QMetaObject.


[править] Описание функций-членов

[править]
const char * QMetaClassInfo::name () const

Returns the name of this item.

Смотрите также value().

[править]
const char * QMetaClassInfo::value () const

Returns the value of this item.

See also name().



Copyright © 2007 Trolltech Trademarks
Qt 4.3.2