-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathExecutor.hpp
33 lines (27 loc) · 1.55 KB
/
Executor.hpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
///
/// Langulus::Flow
/// Copyright (c) 2017 Dimo Markov <[email protected]>
/// Part of the Langulus framework, see https://langulus.com
///
/// SPDX-License-Identifier: GPL-3.0-or-later
///
#pragma once
#include "Common.hpp"
namespace Langulus::Flow
{
///
/// Tools for executing containers as flows
///
LANGULUS_API(FLOW)
bool Execute(const Many&, Many&, Many& output, bool integration, bool silent = false);
LANGULUS_API(FLOW)
bool Execute(const Many&, Many&, Many& output, bool integration, bool& skipVerbs, bool silent = false);
LANGULUS_API(FLOW)
bool ExecuteAND(const Many&, Many&, Many& output, bool integration, bool& skipVerbs, bool silent = false);
LANGULUS_API(FLOW)
bool ExecuteOR(const Many&, Many&, Many& output, bool integration, bool& skipVerbs, bool silent = false);
LANGULUS_API(FLOW)
bool ExecuteVerb(Many&, Verb&, bool silent = false);
LANGULUS_API(FLOW)
bool IntegrateVerb(Many&, Verb&, bool silent = false);
} // namespace Langulus::Flow