24 lines
620 B
C++
24 lines
620 B
C++
/**
|
|
* @file codegenc_mode.hpp
|
|
*
|
|
* Purpose Define the Codegen context for the entry point functions
|
|
*
|
|
* Authors Dinesh Iyer
|
|
*
|
|
* Copyright 2020 MathWorks, Inc.
|
|
*
|
|
*/
|
|
|
|
#ifndef _IMAGES_DATATYPE_CODEGENC_MODE_HPP_
|
|
#define _IMAGES_DATATYPE_CODEGENC_MODE_HPP_
|
|
|
|
#ifndef IMAGEC_IN_CODEGEN_MODE
|
|
#define IMAGEC_IN_CODEGEN_MODE // Macro that specifies that header is being called in generated code
|
|
|
|
// In codegen, this header files are in a "flat" directory structure.
|
|
#include "codegenc_util.hpp"
|
|
#include "codegenc_api.hpp"
|
|
#endif // ! IMAGEC_IN_CODEGEN_MODE
|
|
|
|
|
|
#endif // _IMAGES_DATATYPE_CODEGENC_API_HPP_
|