22 lines
412 B
C++
22 lines
412 B
C++
module;
|
|
|
|
// Global module fragment: pull in third-party headers
|
|
#include <taskflow/taskflow.hpp>
|
|
|
|
export module taskflow;
|
|
|
|
import std;
|
|
|
|
// Re-export taskflow namespace
|
|
export namespace tf
|
|
{
|
|
using namespace ::tf;
|
|
|
|
// Explicitly export commonly used items for better documentation
|
|
using ::tf::Executor;
|
|
using ::tf::Taskflow;
|
|
using ::tf::Task;
|
|
using ::tf::Subflow;
|
|
using ::tf::Future;
|
|
}
|