2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
20#ifndef CORE_PIPE_PIPE_H
21#define CORE_PIPE_PIPE_H
28#ifndef DOXYGEN_SHOULD_SKIP_THIS
42 Pipe(
const std::function<
void(
PipeSource&,
PipeSink&)>& onSuccess,
const std::function<
void(
int)>& onError);
Pipe & operator=(const Pipe &pipe)=delete
Pipe(const Pipe &pipe)=delete
Pipe(const std::function< void(PipeSource &, PipeSink &)> &onSuccess, const std::function< void(int)> &onError)
int main(int argc, char *argv[])