mirror of
https://github.com/pocoproject/poco.git
synced 2025-10-18 03:29:47 +02:00

fix: remove executable flag and change back to 100644 (was 100755) Signed-off-by: Roger Meier <r.meier@siemens.com>
38 lines
514 B
C++
38 lines
514 B
C++
//
|
|
// Limit.cpp
|
|
//
|
|
// $Id: //poco/Main/Data/src/Limit.cpp#5 $
|
|
//
|
|
// Library: Data
|
|
// Package: DataCore
|
|
// Module: Limit
|
|
//
|
|
// Copyright (c) 2006, Applied Informatics Software Engineering GmbH.
|
|
// and Contributors.
|
|
//
|
|
// SPDX-License-Identifier: BSL-1.0
|
|
//
|
|
|
|
|
|
#include "Poco/Data/Limit.h"
|
|
|
|
|
|
namespace Poco {
|
|
namespace Data {
|
|
|
|
|
|
Limit::Limit(SizeT value, bool hardLimit, bool isLowerLimit) :
|
|
_value(value),
|
|
_hardLimit(hardLimit),
|
|
_isLowerLimit(isLowerLimit)
|
|
{
|
|
}
|
|
|
|
|
|
Limit::~Limit()
|
|
{
|
|
}
|
|
|
|
|
|
} } // namespace Poco::Data
|