1 | // |
---|---|
2 | // Position.cpp |
3 | // |
4 | // Library: Data |
5 | // Package: DataCore |
6 | // Module: Position |
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/Position.h" |
16 | |
17 | |
18 | namespace Poco { |
19 | namespace Data { |
20 | |
21 | |
22 | Position::Position(Poco::UInt32 positionValue): _value(positionValue) |
23 | { |
24 | } |
25 | |
26 | |
27 | Position::~Position() |
28 | { |
29 | } |
30 | |
31 | |
32 | } } // namespace Poco::Data |
33 |