You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

22 lines
431 B

  1. // Version information (cf. cln.m4)
  2. #ifndef _CL_VERSION_H
  3. #define _CL_VERSION_H
  4. /* These definitions are adjusted by `configure' automatically. */
  5. #define CL_VERSION_MAJOR 1
  6. #define CL_VERSION_MINOR 1
  7. #define CL_VERSION_PATCHLEVEL 0
  8. #define CL_VERSION 1.1.0
  9. namespace cln {
  10. extern const int version_major;
  11. extern const int version_minor;
  12. extern const int version_patchlevel;
  13. } // namespace cln
  14. #endif /* _CL_VERSION_H */