// // Version.h // // $Id: //poco/1.4/Foundation/include/Poco/Version.h#10 $ // // Library: Foundation // Package: Core // Module: Version // // Version information for the POCO C++ Libraries. // // Copyright (c) 2004-2012, Applied Informatics Software Engineering GmbH. // and Contributors. // // SPDX-License-Identifier: BSL-1.0 // #ifndef Foundation_Version_INCLUDED #define Foundation_Version_INCLUDED // // Version Information // // Version format is 0xAABBCCDD, where // - AA is the major version number, // - BB is the minor version number, // - CC is the revision number, and // - DD is the patch level number. // Note that some patch level numbers have // a special meaning: // Dx are development releases // Ax are alpha releases // Bx are beta releases // #define POCO_VERSION 0x010600D1 #endif // Foundation_Version_INCLUDED