diff options
Diffstat (limited to 'libcrystfel/src/cell.h')
-rw-r--r-- | libcrystfel/src/cell.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/libcrystfel/src/cell.h b/libcrystfel/src/cell.h index 57741b41..0a512a43 100644 --- a/libcrystfel/src/cell.h +++ b/libcrystfel/src/cell.h @@ -99,6 +99,10 @@ typedef struct _unitcell UnitCell; **/ typedef struct _unitcelltransformation UnitCellTransformation; +#ifdef __cplusplus +extern "C" { +#endif + extern UnitCell *cell_new(void); extern UnitCell *cell_new_from_cell(UnitCell *orig); extern void cell_free(UnitCell *cell); @@ -171,4 +175,8 @@ extern UnitCellTransformation *tfn_inverse(UnitCellTransformation *t); extern double *tfn_vector(double a, double b, double c); extern void tfn_free(UnitCellTransformation *t); +#ifdef __cplusplus +} +#endif + #endif /* CELL_H */ |