File: version.hpp

package info (click to toggle)
tilemaker 3.0.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 78,284 kB
  • sloc: cpp: 28,715; ansic: 4,052; makefile: 180; ruby: 77; sh: 6
file content (36 lines) | stat: -rw-r--r-- 938 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#ifndef VTZERO_VERSION_HPP
#define VTZERO_VERSION_HPP

/*****************************************************************************

vtzero - Tiny and fast vector tile decoder and encoder in C++.

This file is from https://github.com/mapbox/vtzero where you can find more
documentation.

*****************************************************************************/

/**
 * @file version.hpp
 *
 * @brief Contains the version number macros for the vtzero library.
 */

/// The major version number
#define VTZERO_VERSION_MAJOR 1

/// The minor version number
#define VTZERO_VERSION_MINOR 1

/// The patch number
#define VTZERO_VERSION_PATCH 0

/// The complete version number
#define VTZERO_VERSION_CODE                                      \
    (VTZERO_VERSION_MAJOR * 10000 + VTZERO_VERSION_MINOR * 100 + \
     VTZERO_VERSION_PATCH)

/// Version number as string
#define VTZERO_VERSION_STRING "1.1.0"

#endif // VTZERO_VERSION_HPP