18 lines
412 B
C
18 lines
412 B
C
#ifndef @PREFIX@_GITVERSION_H
|
|
#define @PREFIX@_GITVERSION_H
|
|
|
|
namespace @PREFIX@ {
|
|
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
|