|
Grantlee
0.3.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. | |
Macros | |
| #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 538 of file metatype.h.
| #define GRANTLEE_BEGIN_LOOKUP_PTR | ( | Type | ) |
Top boundary of a lookup function for Type*.
Definition at line 550 of file metatype.h.
| #define GRANTLEE_END_LOOKUP |
Bottom boundary of a lookup function for Type.
Definition at line 562 of file metatype.h.
| #define GRANTLEE_METATYPE_INITIALIZE |
Macro to initialize the metatype system.
Definition at line 392 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 501 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 316 of file metatype.h.
| #define GRANTLEE_REGISTER_SEQUENTIAL_CONTAINER | ( | Container | ) |
Registers Container so that it can be accessed by Grantlee.
Definition at line 482 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 289 of file metatype.h.
1.8.1.2