mirror of
https://github.com/pocoproject/poco.git
synced 2025-10-18 11:39:00 +02:00

fix: remove executable flag and change back to 100644 (was 100755) Signed-off-by: Roger Meier <r.meier@siemens.com>
37 lines
605 B
C++
37 lines
605 B
C++
//
|
|
// PooledSessionHolder.cpp
|
|
//
|
|
// $Id: //poco/Main/Data/src/PooledSessionHolder.cpp#1 $
|
|
//
|
|
// Library: Data
|
|
// Package: SessionPooling
|
|
// Module: PooledSessionHolder
|
|
//
|
|
// Copyright (c) 2006, Applied Informatics Software Engineering GmbH.
|
|
// and Contributors.
|
|
//
|
|
// SPDX-License-Identifier: BSL-1.0
|
|
//
|
|
|
|
|
|
#include "Poco/Data/PooledSessionHolder.h"
|
|
|
|
|
|
namespace Poco {
|
|
namespace Data {
|
|
|
|
|
|
PooledSessionHolder::PooledSessionHolder(SessionPool& owner, SessionImpl* pSessionImpl):
|
|
_owner(owner),
|
|
_pImpl(pSessionImpl, true)
|
|
{
|
|
}
|
|
|
|
|
|
PooledSessionHolder::~PooledSessionHolder()
|
|
{
|
|
}
|
|
|
|
|
|
} } // namespace Poco::Data
|