JaiaBot 2.0.0
JaiaBot micro-AUV software
 
Loading...
Searching...
No Matches
version.h
Go to the documentation of this file.
1// Copyright 2021:
2// JaiaRobotics LLC
3// File authors:
4// Toby Schneider <toby@gobysoft.org>
5//
6//
7// This file is part of the JaiaBot Project Libraries
8// ("The Jaia Libraries").
9//
10// The Jaia Libraries are free software: you can redistribute them and/or modify
11// them under the terms of the GNU Lesser General Public License as published by
12// the Free Software Foundation, either version 2.1 of the License, or
13// (at your option) any later version.
14//
15// The Jaia Libraries are distributed in the hope that they will be useful,
16// but WITHOUT ANY WARRANTY; without even the implied warranty of
17// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18// GNU Lesser General Public License for more details.
19//
20// You should have received a copy of the GNU Lesser General Public License
21// along with the Jaia Libraries. If not, see <http://www.gnu.org/licenses/>.
22
23#ifndef JAIABOT_SRC_LIB_VERSION_H
24#define JAIABOT_SRC_LIB_VERSION_H
25
26#include <string>
27
28// clang-format off
29// (don't change @@ macros for CMake)
30#define JAIABOT_VERSION_MAJOR "2"
31#define JAIABOT_VERSION_MINOR "0"
32#define JAIABOT_VERSION_PATCH "0"
33
34#if 0
35#define JAIABOT_VERSION_GITHASH ""
36#define JAIABOT_VERSION_GITBRANCH ""
37#endif
38
39#define MOOS_VERSION "10.4.0"
40
41namespace jaiabot
42{
43constexpr const char* VERSION_STRING = "2.0.0";
44constexpr std::uint32_t INTERVEHICLE_API_VERSION{14};
45}
46// clang-format on
47
48#endif
constexpr std::uint32_t INTERVEHICLE_API_VERSION
Definition version.h:44
constexpr const char * VERSION_STRING
Definition version.h:43