SIMLIB/C++  3.07
version.cc
Go to the documentation of this file.
1 //! \file version.cc SIMLIB version number
2 #include "simlib.h"
3 #include "internal.h"
4 
5 namespace simlib3 {
6 
8 
9 const unsigned SIMLIB_version = __SIMLIB__; //!< library version
10 
11 //! Get version of SIMLIB
12 //! \returns string with version of SIMLIB/C++
13 const char *SIMLIB_version_string() {
14  static const char s[] = "SIMLIB " SIMLIB_VERSION " (" __DATE__ " " __TIME__ ")";
15  return s;
16 }
17 
18 } // namespace
19 
#define __SIMLIB__
Definition: simlib.h:8
Implementation of class CalendarList interface is static - using global functions in SQS namespace...
Definition: algloop.cc:32
#define SIMLIB_VERSION
Definition: simlib.h:9
const char * SIMLIB_version_string()
Get version of SIMLIB.
Definition: version.cc:13
Internal header file for SIMLIB/C++.
Main SIMLIB/C++ interface.
SIMLIB_IMPLEMENTATION
Definition: algloop.cc:34
const unsigned SIMLIB_version
library version
Definition: version.cc:9