Doxygen: Add brief description for conv_generic_to_vector_2d_t

This commit is contained in:
Mario Hüttel 2020-01-14 19:00:57 +01:00
parent 0c5dd3c8e7
commit f11e11e6a7
1 changed files with 3 additions and 0 deletions

View File

@ -70,6 +70,9 @@ union bounding_box {
struct vector_2d vector_array[2];
};
/*
* @brief Pointer to a function that takes any pointer and converts this object to a vector_2d struct
*/
typedef void (*conv_generic_to_vector_2d_t)(void *, struct vector_2d *);
/**