Seeed Grove ++  v0.0.1-1441M
C++ Library For Seeed Grove Devices
timestamp.cpp
Go to the documentation of this file.
1 /* Seeed Grove ++ (C) 2015 Stephane Charette <stephanecharette@gmail.com>
2  * $Id: timestamp.cpp 1436 2015-12-09 11:50:44Z stephane $
3  */
4 
5 #include "sg_base.hpp"
6 
7 
9 
10 
11 std::string SG::get_build_timestamp( void )
12 {
13  return __DATE__ " " __TIME__;
14 }
std::string get_build_timestamp(void)
Format the compiler macros __DATE__ and __TIME__ to make a readable timestamp showing when this proje...
Definition: timestamp.cpp:11