branch | v_0 |
changeset 14 | 733334eca89b |
parent 9 | 0a40752e401d |
child 20 | bef6648e79b1 |
13:e7234dd45166 | 14:733334eca89b |
---|---|
1 #include "../include/RelationalWriter.h" |
|
2 #include "../include/Factory.h" |
|
3 #include "StreamRelationalWriter.h" |
|
4 |
|
5 namespace relpipe { |
|
6 namespace writer { |
|
7 |
|
8 RelationalWriter* Factory::create(std::ostream& output) { |
|
9 return new StreamRelationalWriter(output); |
|
10 } |
|
11 |
|
12 } |
|
13 } |