Coin Logo Coin3D is Free Software,
published under the BSD 3-clause license.
https://bitbucket.org/Coin3D/
http://www.kongsberg.com/kogt/
SbDict.h File Reference
#include <stddef.h>
#include <Inventor/SbBasic.h>

Go to the source code of this file.

Classes

class  SbDict
 The SbDict class organizes a dictionary of keys and values.It uses hashing to quickly insert and find entries in the dictionary. An entry consists of an unique key and a generic pointer. More...
 

Typedefs

typedef uintptr_t SbDictKeyType
 
typedef void SbDictApplyFunc (SbDictKeyType key, void *value)
 
typedef void SbDictApplyDataFunc (SbDictKeyType key, void *value, void *data)
 
typedef SbDictKeyType SbDictHashingFunc (const SbDictKeyType key)
 

Typedef Documentation

uintptr_t SbDictKeyType

The type definition for a dictionary key.

void SbDictApplyFunc

The type definition of the function to be applied to each entry.

void SbDictApplyDataFunc

The type definition of the function with associated data that is to be applied to each entry.

SbDictKeyType SbDictHashingFunc

The type definition of a dictionary hashing function.