mirror of
https://github.com/UtilitechAS/amsreader-firmware.git
synced 2026-01-13 15:37:03 +00:00
19 lines
231 B
C++
19 lines
231 B
C++
/**
|
|
* @copyright Utilitech AS 2023
|
|
* License: Fair Source
|
|
*
|
|
*/
|
|
|
|
#ifndef _FIRMWARE_VERSION_h
|
|
#define _FIRMWARE_VERSION_h
|
|
|
|
|
|
class FirmwareVersion {
|
|
public:
|
|
static long BuildEpoch;
|
|
static const char* VersionString;
|
|
};
|
|
|
|
#endif
|
|
|