2012-04-23 03:14:34 +02:00
|
|
|
//
|
|
|
|
// 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.
|
|
|
|
//
|
2014-05-04 21:02:42 +02:00
|
|
|
// SPDX-License-Identifier: BSL-1.0
|
2012-04-23 03:14:34 +02:00
|
|
|
//
|
|
|
|
|
|
|
|
|
|
|
|
#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
|
|
|
|
//
|
2014-10-30 14:09:51 +01:00
|
|
|
#define POCO_VERSION 0x010600D1
|
2012-04-23 03:14:34 +02:00
|
|
|
|
|
|
|
|
|
|
|
#endif // Foundation_Version_INCLUDED
|