Skip to content

Commit f558729

Browse files
committed
updated include syntax
1 parent ab4d32f commit f558729

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

examples/dsl/condition_dsl.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
// reaches a breaking number
2020
// - D is a task that wraps up the result
2121
#include <taskflow/taskflow.hpp>
22-
#include <taskflow/dsl/task_dsl.hpp>
22+
#include <taskflow/dsl.hpp>
2323

2424
int main() {
2525
tf::Executor executor;

examples/dsl/simple_dsl.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// using Task DSL to describe
44
// TaskA -> fork(TaskB, TaskC) -> TaskD
55
#include <taskflow/taskflow.hpp> // the only include you need
6-
#include <taskflow/dsl/task_dsl.hpp> // for support dsl
6+
#include <taskflow/dsl.hpp> // for support dsl
77

88
int main() {
99
tf::Executor executor;

examples/dsl/visualization_dsl.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
// a taskflow graph.
44
// use task dsl
55
#include <taskflow/taskflow.hpp>
6-
#include <taskflow/dsl/task_dsl.hpp> // for support dsl
6+
#include <taskflow/dsl.hpp> // for support dsl
77

88
int main() {
99
tf::Taskflow tf("Visualization Demo");

0 commit comments

Comments
 (0)