1 | // |
2 | // Limit.cpp |
3 | // |
4 | // Library: Data |
5 | // Package: DataCore |
6 | // Module: Limit |
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/Data/Limit.h" |
16 | |
17 | |
18 | namespace Poco { |
19 | namespace Data { |
20 | |
21 | |
22 | Limit::Limit(SizeT limitValue, bool hardLimit, bool lowerLimit) : |
23 | _value(limitValue), |
24 | _hardLimit(hardLimit), |
25 | _isLowerLimit(lowerLimit) |
26 | { |
27 | } |
28 | |
29 | |
30 | Limit::~Limit() |
31 | { |
32 | } |
33 | |
34 | |
35 | } } // namespace Poco::Data |
36 | |