20 lines
502 B
C++
20 lines
502 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 0; }
|
||
|
|
||
|
static constexpr inline uint32_t LibRevision( )
|
||
|
{ return 0; }
|
||
|
|
||
|
|
||
|
}
|
||
|
#endif // _H_LW_LIB_VERSION
|