1 | // |
---|---|
2 | // PooledSessionHolder.cpp |
3 | // |
4 | // Library: SQL |
5 | // Package: SessionPooling |
6 | // Module: PooledSessionHolder |
7 | // |
8 | // Copyright (c) 2006, Applied Informatics Software Engineering GmbH. |
9 | // and Contributors. |
10 | // |
11 | // SPDX-License-Identifier: BSL-1.0 |
12 | // |
13 | |
14 | |
15 | #include "Poco/SQL/PooledSessionHolder.h" |
16 | |
17 | |
18 | namespace Poco { |
19 | namespace SQL { |
20 | |
21 | |
22 | PooledSessionHolder::PooledSessionHolder(SessionPool& rOwner, SessionImpl::Ptr pSessionImpl): |
23 | _owner(rOwner), |
24 | _pImpl(pSessionImpl) |
25 | { |
26 | } |
27 | |
28 | |
29 | PooledSessionHolder::~PooledSessionHolder() |
30 | { |
31 | } |
32 | |
33 | |
34 | } } // namespace Poco::SQL |
35 |