19 lines
381 B
C
Executable File
19 lines
381 B
C
Executable File
#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_*/
|