mirror of
https://github.com/pocoproject/poco.git
synced 2025-12-09 08:15:33 +01:00
* Add support for modules * Use "" for inclusion * Fix missing includes on Poco.Data module * Add PDF and SevenZip modules, and match modules to build macros * Add CI test * Add missing link libraries in CMake * Add remaining libraries DNSSD, CppParser and CppUnit. Changed some static declarations to inline to export * We also need to forward the ENABLE_NETSSL_* macros * Update CMakeLists files * Add samples as requested, with DateTime and URI test for example * Fix POCO_MODULES_INSTALL macro * chore(CMake): Combine install macro for libraries and C++ modules into one macro. * Apply testsuite changes and address include directories concerns * Restore accidentally deleted build files * Mistakenly added a file generated by CMake, removed. --------- Co-authored-by: Matej Kenda <matejken@gmail.com>
38 lines
1.0 KiB
C++
38 lines
1.0 KiB
C++
//
|
|
// ActiveRecord.cppm
|
|
//
|
|
// C++ module file
|
|
//
|
|
// Copyright (c) 2025, Applied Informatics Software Engineering GmbH.
|
|
// and Contributors.
|
|
//
|
|
// SPDX-License-Identifier: BSL-1.0
|
|
//
|
|
|
|
module;
|
|
|
|
#ifdef ENABLE_ACTIVERECORD
|
|
#include "Poco/ActiveRecord/ActiveRecord.h"
|
|
#include "Poco/ActiveRecord/ActiveRecordLib.h"
|
|
#include "Poco/ActiveRecord/Context.h"
|
|
#include "Poco/ActiveRecord/IDTraits.h"
|
|
#include "Poco/ActiveRecord/Query.h"
|
|
#include "Poco/ActiveRecord/StatementPlaceholderProvider.h"
|
|
#endif
|
|
|
|
export module Poco.ActiveRecord;
|
|
|
|
export namespace Poco::ActiveRecord {
|
|
#ifdef ENABLE_ACTIVERECORD
|
|
using Poco::ActiveRecord::ActiveRecord;
|
|
using Poco::ActiveRecord::ActiveRecordBase;
|
|
using Poco::ActiveRecord::Context;
|
|
using Poco::ActiveRecord::DefaultStatementPlaceholderProvider;
|
|
using Poco::ActiveRecord::IDTraits;
|
|
using Poco::ActiveRecord::KeylessActiveRecord;
|
|
using Poco::ActiveRecord::PostgresStatementPlaceholderProvider;
|
|
using Poco::ActiveRecord::Query;
|
|
using Poco::ActiveRecord::StatementPlaceholderProvider;
|
|
#endif
|
|
}
|