Grantlee
0.2.0
|
#include "grantlee_core_export.h"
#include "typeaccessor.h"
#include <QtCore/QVariant>
#include <QtCore/QStringList>
#include <QtCore/QStack>
#include <QtCore/QQueue>
#include <deque>
#include <list>
#include <map>
#include <vector>
Go to the source code of this file.
Namespaces | |
namespace | Grantlee |
The Grantlee namespace holds all public Grantlee API. | |
Defines | |
#define | GRANTLEE_BEGIN_LOOKUP(Type) |
#define | GRANTLEE_BEGIN_LOOKUP_PTR(Type) |
#define | GRANTLEE_END_LOOKUP |
#define | GRANTLEE_METATYPE_INITIALIZE |
#define | GRANTLEE_REGISTER_ASSOCIATIVE_CONTAINER(Container) |
#define | GRANTLEE_REGISTER_ASSOCIATIVE_CONTAINER_IF(Container,Type) |
#define | GRANTLEE_REGISTER_SEQUENTIAL_CONTAINER(Container) |
#define | GRANTLEE_REGISTER_SEQUENTIAL_CONTAINER_IF(Container, Type) |
Functions | |
template<typename RealType , typename HandleAs > | |
int | Grantlee::registerMetaType () |
Registers the type RealType with the metatype system. |
Definition in file metatype.h.
#define GRANTLEE_BEGIN_LOOKUP | ( | Type | ) |
Top boundary of a lookup function for Type.
Definition at line 542 of file metatype.h.
#define GRANTLEE_BEGIN_LOOKUP_PTR | ( | Type | ) |
Top boundary of a lookup function for Type*.
Definition at line 554 of file metatype.h.
#define GRANTLEE_END_LOOKUP |
Bottom boundary of a lookup function for Type.
Definition at line 566 of file metatype.h.
#define GRANTLEE_METATYPE_INITIALIZE |
Macro to initialize the metatype system.
Definition at line 396 of file metatype.h.
Referenced by Grantlee::registerMetaType().
#define GRANTLEE_REGISTER_ASSOCIATIVE_CONTAINER | ( | Container | ) |
Registers Container so that it can be accessed by Grantlee.
Definition at line 505 of file metatype.h.
#define GRANTLEE_REGISTER_ASSOCIATIVE_CONTAINER_IF | ( | Container, | |
Type | |||
) |
Registers Container<Key, Type> with Grantlee if it has been declared as a metatype.
The following containers will be available to Grantlee if they were declared as a QMetaType:
Definition at line 320 of file metatype.h.
#define GRANTLEE_REGISTER_SEQUENTIAL_CONTAINER | ( | Container | ) |
Registers Container so that it can be accessed by Grantlee.
Definition at line 486 of file metatype.h.
#define GRANTLEE_REGISTER_SEQUENTIAL_CONTAINER_IF | ( | Container, | |
Type | |||
) |
Registers Container<Type> with Grantlee if it has been declared as a metatype.
Definition at line 293 of file metatype.h.