mirror of
				https://github.com/pocoproject/poco.git
				synced 2025-11-04 12:17:37 +01:00 
			
		
		
		
	fix: remove executable flag and change back to 100644 (was 100755) Signed-off-by: Roger Meier <r.meier@siemens.com>
		
			
				
	
	
		
			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 0x01050300
 | 
						|
 | 
						|
 | 
						|
#endif // Foundation_Version_INCLUDED
 |