X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;ds=sidebyside;f=lib%2Ffpa%2FConfig.h.in;fp=lib%2Ffpa%2FConfig.h.in;h=1050a244fec50816e064be850f54b9cbb08b398e;hb=ea46079b5aef76c1782648ed23e70ea944649635;hp=0000000000000000000000000000000000000000;hpb=cabeca5a2968a2af677844c2ac40417638d6116b;p=FrontAlgorithms.git diff --git a/lib/fpa/Config.h.in b/lib/fpa/Config.h.in new file mode 100644 index 0000000..1050a24 --- /dev/null +++ b/lib/fpa/Config.h.in @@ -0,0 +1,39 @@ +#ifndef __fpa__Config__h__ +#define __fpa__Config__h__ + +#include + +/* + * ========================================================================= + * Version numbers and strings + * ========================================================================= + */ +#define fpa_MAJOR_VERSION @prj_MAJ_VER@ +#define fpa_MINOR_VERSION @prj_MIN_VER@ +#define fpa_RELEASE_VERSION @prj_REL_VER@ +#define fpa_VERSION "@prj_VERSION@" +#define fpa_SHORT_VERSION "@prj_SHORT_VERSION@" + +/* + * ========================================================================= + * Language related macros + * ========================================================================= + */ + +#if __cplusplus >= 201103L +# define fpa_OVERRIDE override +# define fpa_DELETE_FUNCTION =delete +# define fpa_NULLPTR nullptr +# define fpa_NOEXCEPT noexcept +# define fpa_HAS_CXX11_STATIC_ASSERT +# define fpa_HAS_CXX11_RVREF +#else +# define fpa_OVERRIDE +# define fpa_DELETE_FUNCTION +# define fpa_NULLPTR NULL +# define fpa_NOEXCEPT throw() +#endif + +#endif // __fpa__Config__h__ + +// eof - $RCSfile$