mirror of
https://github.com/pocoproject/poco.git
synced 2025-01-23 10:36:37 +01:00
76 lines
1.1 KiB
C++
76 lines
1.1 KiB
C++
//
|
|
// PositionExtraction.h
|
|
//
|
|
// Library: Data
|
|
// Package: DataCore
|
|
// Module: Position
|
|
//
|
|
// Definition of the PositionExtraction class.
|
|
//
|
|
// Copyright (c) 2006, Applied Informatics Software Engineering GmbH.
|
|
// and Contributors.
|
|
//
|
|
// SPDX-License-Identifier: BSL-1.0
|
|
//
|
|
|
|
|
|
#ifndef Data_Position_INCLUDED
|
|
#define Data_Position_INCLUDED
|
|
|
|
|
|
#include "Poco/Data/Limit.h"
|
|
|
|
|
|
namespace Poco {
|
|
namespace Data {
|
|
|
|
|
|
class Data_API Position
|
|
/// Utility class wrapping unsigned integer. Used to
|
|
/// indicate the recordset position in batch SQL statements.
|
|
{
|
|
public:
|
|
Position(Poco::UInt32 value);
|
|
/// Creates the Position.
|
|
|
|
~Position();
|
|
/// Destroys the Position.
|
|
|
|
Poco::UInt32 value() const;
|
|
/// Returns the position value.
|
|
|
|
private:
|
|
Position();
|
|
|
|
Poco::UInt32 _value;
|
|
};
|
|
|
|
|
|
///
|
|
/// inlines
|
|
///
|
|
inline Poco::UInt32 Position::value() const
|
|
{
|
|
return _value;
|
|
}
|
|
|
|
|
|
namespace Keywords {
|
|
|
|
|
|
template <typename T>
|
|
inline Position from(const T& value)
|
|
/// Convenience function for creation of position.
|
|
{
|
|
return Position(value);
|
|
}
|
|
|
|
|
|
} // namespace Keywords
|
|
|
|
|
|
} } // namespace Poco::Data
|
|
|
|
|
|
#endif // Data_Position_INCLUDED
|