mirror of
https://github.com/pocoproject/poco.git
synced 2025-01-07 09:48:04 +01:00
b0581433a7
fix: remove executable flag and change back to 100644 (was 100755) Signed-off-by: Roger Meier <r.meier@siemens.com>
38 lines
604 B
C++
38 lines
604 B
C++
//
|
|
// AutoTransaction.h
|
|
//
|
|
// $Id: //poco/Main/Data/include/Poco/Data/AutoTransaction.h#2 $
|
|
//
|
|
// Library: Data
|
|
// Package: Core
|
|
// Module: AutoTransaction
|
|
//
|
|
// Forward header for the Transaction class.
|
|
//
|
|
// Copyright (c) 2006, Applied Informatics Software Engineering GmbH.
|
|
// and Contributors.
|
|
//
|
|
// SPDX-License-Identifier: BSL-1.0
|
|
//
|
|
|
|
|
|
|
|
#ifndef Data_AutoTransaction_INCLUDED
|
|
#define Data_AutoTransaction_INCLUDED
|
|
|
|
|
|
#include "Poco/Data/Transaction.h"
|
|
|
|
|
|
namespace Poco {
|
|
namespace Data {
|
|
|
|
|
|
typedef Transaction AutoTransaction;
|
|
|
|
|
|
} } // namespace Poco::Data
|
|
|
|
|
|
#endif // Data_AutoTransaction_INCLUDED
|