Skip to content
Snippets Groups Projects
Select Git revision
  • 00962b0a6c024a78bebd07d1ff1a7476bcddf003
  • main default protected
  • convert-cookiecutter
  • expand-documentation
  • enable-security-dashboard
  • fix-clang-tidy
6 results

GitVersion.h.in

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    GitVersion.h.in 437 B
    #ifndef @PREFIX@_GITVERSION_H
    #define @PREFIX@_GITVERSION_H
    
    namespace @PREFIX@ {
      const char* version();
      const char* version_string();
      unsigned int version_major();
      unsigned int version_minor();
      unsigned int version_patch();
      const char* version_flag();
      unsigned int version_distance();
      const char* version_shorthash();
      const char* version_fullhash();
      bool version_isdirty();
      const char* version_branch();
    }
    
    #endif