2012-11-15 23:15:41 +01:00
|
|
|
/*
|
|
|
|
* Created by Phil on 13/11/2012.
|
|
|
|
* Copyright 2012 Two Blue Cubes Ltd. All rights reserved.
|
|
|
|
*
|
|
|
|
* Distributed under the Boost Software License, Version 1.0. (See accompanying
|
|
|
|
* file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
|
|
|
|
*/
|
|
|
|
#ifndef TWOBLUECUBES_CATCH_VERSION_H_INCLUDED
|
|
|
|
#define TWOBLUECUBES_CATCH_VERSION_H_INCLUDED
|
|
|
|
|
2017-07-06 22:28:42 +02:00
|
|
|
#include <iosfwd>
|
|
|
|
|
2012-11-15 23:15:41 +01:00
|
|
|
namespace Catch {
|
|
|
|
|
|
|
|
// Versioning information
|
|
|
|
struct Version {
|
2017-07-20 00:27:28 +02:00
|
|
|
Version( Version const& ) = delete;
|
|
|
|
Version& operator=( Version const& ) = delete;
|
2012-12-02 00:42:47 +01:00
|
|
|
Version( unsigned int _majorVersion,
|
|
|
|
unsigned int _minorVersion,
|
2015-06-29 19:05:23 +02:00
|
|
|
unsigned int _patchNumber,
|
2017-03-22 17:45:36 +01:00
|
|
|
char const * const _branchName,
|
2015-06-29 19:05:23 +02:00
|
|
|
unsigned int _buildNumber );
|
2012-12-02 00:42:47 +01:00
|
|
|
|
2014-04-18 09:28:52 +02:00
|
|
|
unsigned int const majorVersion;
|
|
|
|
unsigned int const minorVersion;
|
2015-06-29 19:05:23 +02:00
|
|
|
unsigned int const patchNumber;
|
|
|
|
|
|
|
|
// buildNumber is only used if branchName is not null
|
2017-03-22 17:45:36 +01:00
|
|
|
char const * const branchName;
|
2014-04-18 09:28:52 +02:00
|
|
|
unsigned int const buildNumber;
|
2013-03-25 09:46:48 +01:00
|
|
|
|
2015-06-29 19:05:23 +02:00
|
|
|
friend std::ostream& operator << ( std::ostream& os, Version const& version );
|
2012-11-15 23:15:41 +01:00
|
|
|
};
|
|
|
|
|
2017-07-20 00:27:28 +02:00
|
|
|
Version const& libraryVersion();
|
2012-11-15 23:15:41 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif // TWOBLUECUBES_CATCH_VERSION_H_INCLUDED
|