version_hal.cpp/h: add methodes to get package data

Origin commit data
------------------
Branch: master
Commit: 7211850725
Author: Thilo Graf <dbt@novatux.de>
Date: 2019-01-01 (Tue, 01 Jan 2019)


------------------
No further description and justification available within origin commit message!

------------------
This commit was generated by Migit
This commit is contained in:
2019-01-01 22:02:33 +01:00
committed by vanhofen
parent a7d384505c
commit e694d23804
5 changed files with 75 additions and 2 deletions

16
include/version_hal.h Normal file
View File

@@ -0,0 +1,16 @@
#ifndef __VERSION_HAL_H__
#define __VERSION_HAL_H__
#include <string>
std::string getPackageVersion();
int getPackageVersionMajor();
int getPackageVersionMinor();
int getPackageVersionMicro();
std::string getPackagenName();
std::string getPackageString();
std::string getPackageVersionGit();
#endif //__VERSION_HAL_H__