ADTF
|
Public Member Functions | |
Version () | |
default CTOR | |
Version (const std::string &version) | |
CTOR - Version from string. More... | |
Version (uint32_t major, uint32_t minor) | |
CTOR. More... | |
uint32_t | getMajor () const |
Get the Major value. More... | |
uint32_t | getMinor () const |
Get the Minor value. More... | |
std::string | toString () const |
the vrsion as string More... | |
bool | isValidVersion () const |
is valid or not More... | |
Static Public Member Functions | |
static const Version & | getDefaultVersion () |
Get the Default Version. More... | |
static const Version & | getLatestVersion () |
Get the latest DDL version This is the currently Version(4, 2). More... | |
Static Public Attributes | |
static const Version | ddl_version_invalid |
invalid Version. More... | |
static const Version | ddl_version_notset |
version not set Version. More... | |
static const Version | ddl_version_10 |
Language Version 1.0. More... | |
static const Version | ddl_version_11 |
Language Version 1.0+. More... | |
static const Version | ddl_version_12 |
Language Version 1.2. More... | |
static const Version | ddl_version_20 |
Language Version 2.0. More... | |
static const Version | ddl_version_30 |
Language Version 3.0. More... | |
static const Version | ddl_version_40 |
Language Version 4.0. More... | |
static const Version | ddl_version_41 |
Language Version 4.1. More... | |
static const Version | ddl_version_current |
the newest version (currently it is Version(4, 2)). More... | |
Static Private Member Functions | |
static const Version & | getDefault () |
Private Attributes | |
uint32_t | _major = {} |
uint32_t | _minor = {} |
DDL Version.
Definition at line 203 of file dd_common_types.h.
Version | ( | uint32_t | major, |
uint32_t | minor | ||
) |
CTOR.
major | the major value |
minor | the minor value |
|
inlinestatic |
Get the Default Version.
This is the currently Version(4, 1).
Definition at line 259 of file dd_common_types.h.
|
static |
Get the latest DDL version This is the currently Version(4, 2).
uint32_t getMajor | ( | ) | const |
Get the Major value.
uint32_t getMinor | ( | ) | const |
Get the Minor value.
bool isValidVersion | ( | ) | const |
is valid or not
std::string toString | ( | ) | const |
the vrsion as string
|
static |
Language Version 1.0.
Version(1, 0)
Definition at line 299 of file dd_common_types.h.
|
static |
Language Version 1.0+.
Version(1, 1)
Definition at line 305 of file dd_common_types.h.
|
static |
Language Version 1.2.
Version(1, 2)
Definition at line 311 of file dd_common_types.h.
|
static |
Language Version 2.0.
Version(2, 0)
Definition at line 317 of file dd_common_types.h.
|
static |
Language Version 3.0.
Version(3, 0)
Definition at line 323 of file dd_common_types.h.
|
static |
Language Version 4.0.
Version(4, 0)
Definition at line 329 of file dd_common_types.h.
|
static |
Language Version 4.1.
Version(4, 1)
Definition at line 335 of file dd_common_types.h.
|
static |
the newest version (currently it is Version(4, 2)).
Definition at line 341 of file dd_common_types.h.
|
static |
|
static |
version not set Version.
Version(0, 0)
Definition at line 293 of file dd_common_types.h.