mirror of
https://github.com/QuantumLeaps/qpc.git
synced 2025-01-28 07:03:10 +08:00
13 lines
193 B
C
13 lines
193 B
C
/**
|
|
* @file
|
|
* @brief Application build time-stamp interface
|
|
*/
|
|
#ifndef QSTAMP_H
|
|
#define QSTAMP_H
|
|
|
|
extern char const Q_BUILD_DATE[12];
|
|
extern char const Q_BUILD_TIME[9];
|
|
|
|
#endif /* QSTAMP_H */
|
|
|