diff options
author | Thomas White <taw@physics.org> | 2020-06-02 17:55:17 +0200 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2020-07-29 18:42:57 +0200 |
commit | df2d6ef008187db7a8df6e65e507de7a98d9b071 (patch) | |
tree | 603f4bb23d8a91ff2782e0b0c57cb520cadefc38 /libcrystfel | |
parent | 992eddf45a90b46c9874470a001ba0ea3bc5c402 (diff) |
Add include guards and warning comment
Diffstat (limited to 'libcrystfel')
-rw-r--r-- | libcrystfel/src/datatemplate_priv.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/libcrystfel/src/datatemplate_priv.h b/libcrystfel/src/datatemplate_priv.h index 8b51931a..574df8b3 100644 --- a/libcrystfel/src/datatemplate_priv.h +++ b/libcrystfel/src/datatemplate_priv.h @@ -26,6 +26,11 @@ * */ +/* NB This file is NOT part of the public API, and should NOT + * be installed, but rather stays in the libcrystfel source folder. */ + +#ifndef DATATEMPLATE_PRIV_H +#define DATATEMPLATE_PRIV_H enum adu_per_unit { @@ -188,3 +193,4 @@ struct _datatemplate struct panel_template defaults; /* FIXME: Shouldn't be stored */ }; +#endif /* DATATEMPLATE_PRIV_H */ |