mirror of
https://github.com/pocoproject/poco.git
synced 2026-01-11 16:43:33 +01:00
23 lines
402 B
C++
23 lines
402 B
C++
//
|
|
// Unicode.cpp
|
|
//
|
|
// Library: Data/ODBC
|
|
// Package: ODBC
|
|
// Module: Unicode
|
|
//
|
|
// Copyright (c) 2006, Applied Informatics Software Engineering GmbH.
|
|
// and Contributors.
|
|
//
|
|
// SPDX-License-Identifier: BSL-1.0
|
|
//
|
|
|
|
|
|
#include "Poco/Data/ODBC/ODBC.h"
|
|
|
|
|
|
#if defined(POCO_ODBC_UNICODE_WINDOWS)
|
|
#include "Unicode_WIN32.cpp"
|
|
#elif defined(POCO_ODBC_UNICODE_UNIXODBC)
|
|
#include "Unicode_UNIXODBC.cpp"
|
|
#endif
|