mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2025-08-01 13:42:39 -04:00
git-svn-id: svn+ssh://svn.code.sf.net/p/wsjt/wsjt/branches/wsjtx@7593 ab8295b8-cf94-4d9e-aec4-7959e3be5d79
20 lines
632 B
C++
20 lines
632 B
C++
// Copyright Vladimir Prus 2004.
|
|
// 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 BOOST_PROGRAM_OPTIONS_VERSION_HPP_VP_2004_04_05
|
|
#define BOOST_PROGRAM_OPTIONS_VERSION_HPP_VP_2004_04_05
|
|
|
|
/** The version of the source interface.
|
|
The value will be incremented whenever a change is made which might
|
|
cause compilation errors for existing code.
|
|
*/
|
|
#ifdef BOOST_PROGRAM_OPTIONS_VERSION
|
|
#error BOOST_PROGRAM_OPTIONS_VERSION already defined
|
|
#endif
|
|
#define BOOST_PROGRAM_OPTIONS_VERSION 2
|
|
|
|
|
|
#endif
|