basic-xml 1.0.1
Very basic loader/writer of XML tags with attributes and content.
version.cpp
Go to the documentation of this file.
1// Copyright (c) 2000-2024 Made to Order Software Corp. All Rights Reserved
2//
3// https://snapwebsites.org/project/basic-xml
4// contact@m2osw.com
5//
6// This program is free software: you can redistribute it and/or modify
7// it under the terms of the GNU General Public License as published by
8// the Free Software Foundation, either version 3 of the License, or
9// (at your option) any later version.
10//
11// This program is distributed in the hope that it will be useful,
12// but WITHOUT ANY WARRANTY; without even the implied warranty of
13// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14// GNU General Public License for more details.
15//
16// You should have received a copy of the GNU General Public License
17// along with this program. If not, see <https://www.gnu.org/licenses/>.
18
29// self
30//
31#include "basic-xml/version.h"
32
33
34// last include
35//
36#include <snapdev/poison.h>
37
38
39
40namespace basic_xml
41{
42
43
44
45
54{
55 return BASIC_XML_VERSION_MAJOR;
56}
57
58
67{
68 return BASIC_XML_VERSION_MINOR;
69}
70
71
80{
81 return BASIC_XML_VERSION_PATCH;
82}
83
84
98char const * get_version_string()
99{
100 return BASIC_XML_VERSION_STRING;
101}
102
103
104} // namespace basic_xml
105// vim: ts=4 sw=4 et
Definitions of the libutf8 version.
int get_major_version()
Get the major version of the library.
Definition version.cpp:53
int get_release_version()
Get the minor version of the library.
Definition version.cpp:66
int get_patch_version()
Get the patch version of the library.
Definition version.cpp:79
char const * get_version_string()
Get the full version of the library as a string.
Definition version.cpp:98

This document is part of the Snap! Websites Project.

Copyright by Made to Order Software Corp.