15 lines
258 B
C++
15 lines
258 B
C++
#ifndef CONNECTOR_VERSION
|
|
#define CONNECTOR_VERSION
|
|
|
|
namespace connector {
|
|
|
|
static const unsigned int versionMajor = 0;
|
|
|
|
static const unsigned int versionMinor = 2;
|
|
|
|
static const unsigned int versionPatch = 4;
|
|
|
|
}
|
|
|
|
#endif //CONNECTOR_VERSION
|