19 lines
523 B
C++
19 lines
523 B
C++
/******************************************************************************/
|
|
/* VERSION NUMBERS ************************************************************/
|
|
/******************************************************************************/
|
|
|
|
#ifndef _H_LW_LIB_VERSION
|
|
#define _H_LW_LIB_VERSION
|
|
#include <lw/lib/Externals.hh>
|
|
namespace lw {
|
|
|
|
|
|
static constexpr inline uint32_t LibVersion( )
|
|
{ return __VERSION__; }
|
|
|
|
static constexpr inline uint32_t LibRevision( )
|
|
{ return __REVISION__; }
|
|
|
|
|
|
}
|
|
#endif // _H_LW_LIB_VERSION
|