13 lines
238 B
C++
13 lines
238 B
C++
|
#pragma once
|
||
|
|
||
|
#include <cstdint>
|
||
|
#include <string>
|
||
|
|
||
|
namespace uvgrtp {
|
||
|
std::string get_version();
|
||
|
uint16_t get_version_major();
|
||
|
uint16_t get_version_minor();
|
||
|
uint16_t get_version_patch();
|
||
|
std::string get_git_hash();
|
||
|
} // namespace uvgrtp
|