Thrill  0.1
thrill.hpp
Go to the documentation of this file.
1 /*******************************************************************************
2  * thrill/thrill.hpp
3  *
4  * Part of Project Thrill - http://project-thrill.org
5  *
6  * Copyright (C) 2015 Alexander Noe <[email protected]>
7  * Copyright (C) 2015 Timo Bingmann <[email protected]>
8  *
9  * All rights reserved. Published under the BSD-2 license in the LICENSE file.
10  ******************************************************************************/
11 
12 #pragma once
13 #ifndef THRILL_THRILL_HEADER
14 #define THRILL_THRILL_HEADER
15 
16 /*[[[perl
17 print "#include <$_>\n" foreach sort glob("thrill/api/"."*.hpp");
18 ]]]*/
23 #include <thrill/api/cache.hpp>
24 #include <thrill/api/collapse.hpp>
25 #include <thrill/api/concat.hpp>
27 #include <thrill/api/context.hpp>
28 #include <thrill/api/dia.hpp>
29 #include <thrill/api/dia_base.hpp>
30 #include <thrill/api/dia_node.hpp>
32 #include <thrill/api/dop_node.hpp>
35 #include <thrill/api/gather.hpp>
36 #include <thrill/api/generate.hpp>
42 #include <thrill/api/max.hpp>
43 #include <thrill/api/merge.hpp>
44 #include <thrill/api/min.hpp>
46 #include <thrill/api/print.hpp>
49 #include <thrill/api/rebalance.hpp>
52 #include <thrill/api/sample.hpp>
53 #include <thrill/api/size.hpp>
54 #include <thrill/api/sort.hpp>
56 #include <thrill/api/sum.hpp>
57 #include <thrill/api/union.hpp>
58 #include <thrill/api/window.hpp>
62 #include <thrill/api/zip.hpp>
65 // [[[end]]]
66 
67 namespace thrill {
68 
69 // our public interface classes and methods go into this namespace. there are
70 // aliased in their respective header file. all others should be in a
71 // sub-namespace.
72 
73 } // namespace thrill
74 
75 #endif // !THRILL_THRILL_HEADER
76 
77 /******************************************************************************/