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
|
|
|
|
|
|
|
|
namespace Catch {
|
|
|
|
|
|
|
|
// Versioning information
|
|
|
|
struct Version {
|
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,
|
|
|
|
std::string const& _branchName,
|
|
|
|
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
|
|
|
|
std::string 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 );
|
2015-11-04 19:01:28 +01:00
|
|
|
|
2013-07-03 09:25:11 +02:00
|
|
|
private:
|
|
|
|
void operator=( Version const& );
|
2012-11-15 23:15:41 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
extern Version libraryVersion;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // TWOBLUECUBES_CATCH_VERSION_H_INCLUDED
|