Akonadi::AttributeFactory

Search for usage in LXR

Akonadi::AttributeFactory Class Reference

#include <attributefactory.h>

Inherited by Akonadi::Internal::StaticAttributeFactory.

Static Public Member Functions

static AttributecreateAttribute (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" );
static Attribute * createAttribute(const QByteArray &type)
Creates an entity attribute object of the given type.
Author
Volker Krause vkrau.nosp@m.se@k.nosp@m.de.or.nosp@m.g

Definition at line 39 of file attributefactory.h.

Member Function Documentation

◆ createAttribute()

Attribute * Akonadi::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
typeThe attribute type.

Definition at line 139 of file attributefactory.cpp.

◆ registerAttribute()

template<typename T >
void Akonadi::AttributeFactory::registerAttribute ( )
inlinestatic

Registers a custom attribute of type T.

The same attribute cannot be registered more than once.

Definition at line 51 of file attributefactory.h.


The documentation for this class was generated from the following files:
This file is part of the KDE documentation.
Documentation copyright © 1996-2024 The KDE developers.
Generated on Tue Mar 26 2024 11:13:38 by doxygen 1.10.0 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.