SIMLIB/C++ 3.09
Loading...
Searching...
No Matches
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
5namespace simlib3 {
6
8
9const unsigned SIMLIB_version = __SIMLIB__; //!< library version
10
11//! Get version of SIMLIB
12//! \returns string with version of SIMLIB/C++
13const char *SIMLIB_version_string() {
14 static const char s[] = "SIMLIB " SIMLIB_VERSION " (" __DATE__ " " __TIME__ ")";
15 return s;
16}
17
18} // namespace
19
Internal header file for SIMLIB/C++.
Implementation of class CalendarList interface is static - using global functions in SQS namespace.
Definition: algloop.cc:32
const unsigned SIMLIB_version
library version
Definition: version.cc:9
SIMLIB_IMPLEMENTATION
Definition: algloop.cc:34
const char * SIMLIB_version_string()
Get version of SIMLIB.
Definition: version.cc:13
Main SIMLIB/C++ interface.
#define __SIMLIB__
Definition: simlib.h:8
#define SIMLIB_VERSION
Definition: simlib.h:9