Seeed Grove ++  v0.0.1-1441M
C++ Library For Seeed Grove Devices
sg_base.hpp
Go to the documentation of this file.
1 /* Seeed Grove ++ (C) 2015 Stephane Charette <stephanecharette@gmail.com>
2  * $Id: sg_base.hpp 1440 2015-12-09 14:15:37Z stephane $
3  */
4 
5 #pragma once
6 
7 #include <string>
8 #include "sg_version.hpp"
9 
10 
11 namespace SG
12 {
14  std::string get_build_timestamp( void );
15 
17  std::string get_version( void );
18 }
std::string get_version(void)
Get the version string.
Definition: base.cpp:9
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
Definition: sg_base.hpp:11