Wizard
Software Engineering Project - Wizard
Loading...
Searching...
No Matches
version.h
Go to the documentation of this file.
1
9// --------------------------------------------------------------------------
10// This file is part of the "sockpp" C++ socket library.
11//
12// Copyright (c) 2019 Frank Pagliughi
13// All rights reserved.
14//
15// Redistribution and use in source and binary forms, with or without
16// modification, are permitted provided that the following conditions are
17// met:
18//
19// 1. Redistributions of source code must retain the above copyright notice,
20// this list of conditions and the following disclaimer.
21//
22// 2. Redistributions in binary form must reproduce the above copyright
23// notice, this list of conditions and the following disclaimer in the
24// documentation and/or other materials provided with the distribution.
25//
26// 3. Neither the name of the copyright holder nor the names of its
27// contributors may be used to endorse or promote products derived from this
28// software without specific prior written permission.
29//
30// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
31// IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
32// THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
33// PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
34// CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
35// EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
36// PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
37// PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
38// LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
39// NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
40// SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
41// --------------------------------------------------------------------------
42
43#ifndef __sockpp_version_h
44#define __sockpp_version_h
45
46#include <string>
47
48namespace sockpp {
49
50 constexpr int SOCKPP_VERSION_MAJOR = 0;
51 constexpr int SOCKPP_VERSION_MINOR = 7;
52 constexpr int SOCKPP_VERSION_PATCH = 0;
53
54 const std::string SOCKPP_VERSION { "v0.7.0" };
55
56}
57
58#endif // __sockpp_version_h
59