You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
381 B
18 lines
381 B
#ifndef IMG_INCLUDES_H_ |
|
#define IMG_INCLUDES_H_ |
|
/*! \file img.h |
|
\brief includes all img headers |
|
|
|
This header just includes every img module header. |
|
*/ |
|
|
|
#include "img/img_base.h" |
|
#include "img_scalar.h" |
|
#include "img/img_image.h" |
|
#include "img_convert.h" |
|
#include "img_cs_base.h" |
|
#include "img_io.h" |
|
#include "img_info.h" |
|
#include "img_filter.h" |
|
|
|
#endif /*IMG_INCLUDES_H_*/
|
|
|