1//
2// Unicode.cpp
3//
4// Library: Data/ODBC
5// Package: ODBC
6// Module: Unicode
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/ODBC/ODBC.h"
16
17
18#if defined(POCO_ODBC_UNICODE_WINDOWS)
19#include "Unicode_WIN32.cpp"
20#elif defined(POCO_ODBC_UNICODE_UNIXODBC)
21#include "Unicode_UNIXODBC.cpp"
22#endif
23