|
struct | AcceptDesiredVersion |
| Tag class used as parameter to ReflectorInterface::version() etc. More...
|
|
class | IgnoreMissing |
| Marker for indicating parameters that should be ignored if they are missing in the config file. More...
|
|
class | OneWaySwitch |
|
struct | ReadMapPairHelper |
|
struct | ReflectCollectionCount |
| Can be specialized for a concrete derived RecursiveMemberReflector to reflect the size of collections like vectors, arrays, lists, maps, etc. More...
|
|
struct | ReflectCollectionCount< JSONDeserializer, Collection > |
| Specialization for JSONDeserializer which counts the item nodes in the parent node to recover the item count, which is much more user friendly, since the user does not need to provide the count himself. More...
|
|
struct | ReflectCollectionCount< JSONDeserializer, MapType< std::string, T > > |
| If Collection has 2 (or more, defaulted) template parameters, where the first one is std::string, check if the second one matches a type definition for 'mapped_type'. More...
|
|
struct | ReflectCollectionCount< JSONSerializer, Collection > |
| Specialization for JSONSerializer which does not write the item count explicitly. More...
|
|
struct | ReflectCollectionItems |
| Can be specialized for a concrete derived RecursiveMemberReflector to reflect the items of collections like vectors, arrays, lists, maps, etc. More...
|
|
struct | ReflectReadMap |
| reflects generic associative containers like map, multimap, hash_map More...
|
|
struct | ReflectReadMapItems |
|
struct | ReflectReadMapItems< JSONSerializer, MapType< std::string, mapped_type > > |
|
struct | ReflectReadSeq |
| Reflects generic sequential containers like vectors, list, deque (Read Only / Serialization) More...
|
|
struct | ReflectReadSet |
| Reflects generic set containers like set, multiset. More...
|
|
struct | ReflectReadSetItems |
|
struct | ReflectWriteMap |
| reflects generic associative containers like map, multimap, hash_map More...
|
|
struct | ReflectWriteMapItems |
|
struct | ReflectWriteMapItems< JSONDeserializer, MapType< std::string, mapped_type > > |
|
struct | ReflectWriteSeq |
| Reflects generic sequencial containers like vectors, list, deque (Write Only / Deserialization) More...
|
|
struct | ReflectWriteSet |
| Deserializes generic set containers like set, multiset. More...
|
|
struct | ReflectWriteSetItems |
|
struct | SetReflectedAsPointer |
|
struct | WriteMapPairHelper |
|
|
template<typename Derived , typename Container > |
void | reflectReadMapPair (Derived &r, const char *itemName, uint32 id, const typename Container::value_type &p) |
|
template<typename Derived , typename Container > |
void | reflectWriteMapPair (Derived &r, const char *itemName, const char *keyName, uint32 id, Container &c, typename Container::iterator &ioHint) |
|
template<typename T , typename Reflector > |
static OneWaySwitch & | reflectedAsPointer () |
| For internal use only: Holds value.isOn=true, iff the type T is ever reflected as pointer with Reflector within this translation unit (C file), otherwise false. More...
|
|
template<typename T > |
void * | void_upcast (T *pointer) |
| Safe cast for casting from a pointer upwards to void* while taking care of polymorphism and multiple inheritance. More...
|
|
template<typename T > |
T * | void_downcast (void *pointer) |
| Safe cast for casting from a void pointer to a derived pointer T* while taking care of polymorphism and multiple inheritance. More...
|
|