#include "moab/Forward.hpp"
#include "moab/ErrorHandler.hpp"
#include "DebugOutput.hpp"
#include "damsel.h"
#include "damsel-internal.h"
Go to the source code of this file.
|
| moab |
| Class representing axis-aligned bounding box.
|
|
◆ CHK_DMSL_ERR
#define CHK_DMSL_ERR |
( |
|
A, |
|
|
|
B |
|
) |
| |
Value: do \
{ \
if( DMSL_OK.id != ( A ).id ) \
{ \
MB_SET_ERR_CONT( B ); \
return
error( MB_FAILURE ); \
} \
} while( false )
Definition at line 14 of file DamselUtil.hpp.
◆ CHK_DMSL_ERR_NM
#define CHK_DMSL_ERR_NM |
( |
|
A | ) |
|
Value: do \
{ \
if( DMSL_OK.id != ( A ).id ) \
{ \
MB_CHK_ERR_CONT( MB_FAILURE ); \
return
error( MB_FAILURE ); \
} \
} while( false )
Definition at line 24 of file DamselUtil.hpp.