mirror of
https://github.com/pocoproject/poco.git
synced 2024-12-13 18:45:10 +01:00
41 lines
881 B
C
41 lines
881 B
C
//
|
|
// 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 0x01050400
|
|
|
|
|
|
#endif // Foundation_Version_INCLUDED
|