![]() |
Pothos
0.4.2-g932b6da0
The Pothos dataflow programming software suite
|
Go to the source code of this file.
Namespaces | |
| Pothos | |
| Pothos::System | |
Macros | |
| #define | POTHOS_API_VERSION 0x00040000 |
| #define | POTHOS_ABI_VERSION "0.4-3" |
Functions | |
| POTHOS_API std::string | Pothos::System::getApiVersion (void) |
| POTHOS_API std::string | Pothos::System::getAbiVersion (void) |
| POTHOS_API std::string | Pothos::System::getLibVersion (void) |
Version information for the library.
| #define POTHOS_ABI_VERSION "0.4-3" |
ABI Version Information - incremented when the ABI is changed. The ABI version format is major.minor-bump. The major.minor comes from the in-progress library version when the change was made, and bump signifies a change to the ABI during library development. The ABI should remain constant across patch releases of the library.
| #define POTHOS_API_VERSION 0x00040000 |
API version number which can be used as a preprocessor check. The format of the version number is encoded as follows: (major << 24) | (minor << 16) | (16 bit increment). Where the increment can be used to indicate implementation changes, fixes, or API additions within a minor release series.
The macro is typically used in an application as follows:
1.8.11