akonadi
Akonadi::AttributeFactory Class Reference
Provides the functionality of registering and creating arbitrary entity attributes. More...
#include <attributefactory.h>
Inherited by StaticAttributeFactory.
Static Public Member Functions | |
static Attribute * | createAttribute (const QByteArray &type) |
template<typename T > | |
static void | registerAttribute () |
Detailed Description
Provides the functionality of registering and creating arbitrary entity attributes.
This class provides the functionality of registering and creating arbitrary Attributes for Entity and its subclasses (e.g. Item and Collection).
// register the type first Akonadi::AttributeFactory::registerAttribute<SecrecyAttribute>(); ... // use it anywhere else in the application SecrecyAttribute *attr = Akonadi::AttributeFactory::createAttribute( "secrecy" );
Definition at line 48 of file attributefactory.h.
Member Function Documentation
Attribute * AttributeFactory::createAttribute | ( | const QByteArray & | type | ) | [static] |
Creates an entity attribute object of the given type.
If the type has not been registered, creates a DefaultAttribute.
- Parameters:
-
type The attribute type.
Definition at line 109 of file attributefactory.cpp.
static void Akonadi::AttributeFactory::registerAttribute | ( | ) | [inline, static] |
Registers a custom attribute of type T.
The same attribute cannot be registered more than once.
Definition at line 59 of file attributefactory.h.
The documentation for this class was generated from the following files: