14#ifndef INCLUDED_LIBCYBERRADIO_BASIC_DICT_H
15#define INCLUDED_LIBCYBERRADIO_BASIC_DICT_H
25 #define BASIC_DICT_CONTAINER std::map
Defines functionality for LibCyberRadio applications.
BASIC_DICT_CONTAINER< std::string, int > BasicStringIntDict
Type representing a dictionary of integers, keyed by string values.
BASIC_DICT_CONTAINER< int, std::string > BasicIntStringDict
Type representing a dictionary of strings, keyed by integer values.
BASIC_DICT_CONTAINER< std::string, std::string > BasicStringStringDict
Type representing a dictionary of strings, keyed by string values.
BASIC_DICT_CONTAINER< int, unsigned int > BasicIntUIntDict
Type representing a dictionary of unsigned integers, keyed by integer values.
BASIC_DICT_CONTAINER< int, int > BasicIntIntDict
Type representing a dictionary of integers, keyed by integer values.
BASIC_DICT_CONTAINER< int, bool > BasicIntBoolDict
Type representing a dictionary of Boolean values, keyed by integers.