Pression  1.0.0
Compressor, decompressor, uploader and downloader plugins
 All Classes Files Functions Variables Macros Pages
version.h File Reference

Defines version macros and class for library Pression. More...

#include <pression/api.h>
#include <string>
+ Include dependency graph for version.h:
+ This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

class  pression::Version
 Information about the current Pression version. More...
 

Macros

#define PRESSION_VERSION_MAJOR   1
 The current major version. More...
 
#define PRESSION_VERSION_MINOR   0
 The current minor version. More...
 
#define PRESSION_VERSION_PATCH   0
 The current patch level. More...
 
#define PRESSION_VERSION_REVISION   0xe813e22
 The current SCM revision. More...
 
#define PRESSION_VERSION_ABI   1
 The current binary interface. More...
 
#define PRESSION_VERSION_GT(MAJOR, MINOR, PATCH)
 True if the current version is newer than the given one. More...
 
#define PRESSION_VERSION_GE(MAJOR, MINOR, PATCH)
 True if the current version is equal or newer to the given. More...
 
#define PRESSION_VERSION_LT(MAJOR, MINOR, PATCH)
 True if the current version is older than the given one. More...
 
#define PRESSION_VERSION_LE(MAJOR, MINOR, PATCH)
 True if the current version is older or equal to the given. More...
 

Detailed Description

Defines version macros and class for library Pression.

Definition in file version.h.

Macro Definition Documentation

#define PRESSION_VERSION_ABI   1

The current binary interface.

Definition at line 29 of file version.h.

#define PRESSION_VERSION_GE (   MAJOR,
  MINOR,
  PATCH 
)
Value:
( (PRESSION_VERSION_MAJOR>MAJOR) || \
#define PRESSION_VERSION_PATCH
The current patch level.
Definition: version.h:23
#define PRESSION_VERSION_MAJOR
The current major version.
Definition: version.h:17
#define PRESSION_VERSION_MINOR
The current minor version.
Definition: version.h:20

True if the current version is equal or newer to the given.

Definition at line 38 of file version.h.

#define PRESSION_VERSION_GT (   MAJOR,
  MINOR,
  PATCH 
)
Value:
( (PRESSION_VERSION_MAJOR>MAJOR) || \
#define PRESSION_VERSION_PATCH
The current patch level.
Definition: version.h:23
#define PRESSION_VERSION_MAJOR
The current major version.
Definition: version.h:17
#define PRESSION_VERSION_MINOR
The current minor version.
Definition: version.h:20

True if the current version is newer than the given one.

Definition at line 32 of file version.h.

#define PRESSION_VERSION_LE (   MAJOR,
  MINOR,
  PATCH 
)
Value:
( (PRESSION_VERSION_MAJOR<MAJOR) || \
#define PRESSION_VERSION_PATCH
The current patch level.
Definition: version.h:23
#define PRESSION_VERSION_MAJOR
The current major version.
Definition: version.h:17
#define PRESSION_VERSION_MINOR
The current minor version.
Definition: version.h:20

True if the current version is older or equal to the given.

Definition at line 50 of file version.h.

#define PRESSION_VERSION_LT (   MAJOR,
  MINOR,
  PATCH 
)
Value:
( (PRESSION_VERSION_MAJOR<MAJOR) || \
#define PRESSION_VERSION_PATCH
The current patch level.
Definition: version.h:23
#define PRESSION_VERSION_MAJOR
The current major version.
Definition: version.h:17
#define PRESSION_VERSION_MINOR
The current minor version.
Definition: version.h:20

True if the current version is older than the given one.

Definition at line 44 of file version.h.

#define PRESSION_VERSION_MAJOR   1

The current major version.

Definition at line 17 of file version.h.

Referenced by pression::Version::check().

#define PRESSION_VERSION_MINOR   0

The current minor version.

Definition at line 20 of file version.h.

Referenced by pression::Version::check().

#define PRESSION_VERSION_PATCH   0

The current patch level.

Definition at line 23 of file version.h.

#define PRESSION_VERSION_REVISION   0xe813e22

The current SCM revision.

Definition at line 26 of file version.h.