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