Returns a list of preprocessor macros, such as ``(HAVE_HDF5, 1)``.
This function is automatically used by :py:func:`bob.extension.get_bob_libraries` to retrieve the prerpocessor definitions that are required to use the C bindings of this library in dependent classes.
You shouldn't normally need to call this function by hand.
**Returns:**
``macros`` : [(str,str)]
The list of preprocessor macros required to use the C bindings of this class.
For now, only ``('HAVE_HDF5', '1')`` is returned, when applicable.
"""
# get include directories
ifget_include_directories():
return[('HAVE_HDF5','1')]
# gets sphinx autodoc done right - don't remove it