aboutsummaryrefslogtreecommitdiff
path: root/libcrystfel/src/grainspotter.h
diff options
context:
space:
mode:
authorChuck <chun.hong.yoon@desy.de>2014-06-12 16:08:55 +0200
committerThomas White <taw@physics.org>2014-06-13 11:01:26 +0200
commit40d6969c7a05fe13c3883443d1c9feba6fab30d1 (patch)
tree23ee8a7247612d7860030a909bc4e1e33ba0c1f3 /libcrystfel/src/grainspotter.h
parent73629ee82c643769ddff3caa437f9e842f353b23 (diff)
Add extern "C" for C++ compatibility
Diffstat (limited to 'libcrystfel/src/grainspotter.h')
-rw-r--r--libcrystfel/src/grainspotter.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/libcrystfel/src/grainspotter.h b/libcrystfel/src/grainspotter.h
index 2e308a1c..b6a83725 100644
--- a/libcrystfel/src/grainspotter.h
+++ b/libcrystfel/src/grainspotter.h
@@ -35,6 +35,10 @@
#include "cell.h"
+#ifdef __cplusplus
+extern "C" {
+#endif
+
extern IndexingPrivate *grainspotter_prepare(IndexingMethod *indm,
UnitCell *cell,
struct detector *det,
@@ -45,5 +49,8 @@ extern void grainspotter_cleanup(IndexingPrivate *pp);
extern int grainspotter_index(struct image *image, IndexingPrivate *p);
+#ifdef __cplusplus
+}
+#endif
#endif /* GRAINSPOTTER_H */