Skip to content

Commit

Permalink
#21 Segregated headers to generator, operator and sink directories
Browse files Browse the repository at this point in the history
  • Loading branch information
bartop committed Dec 3, 2017
1 parent bc6a563 commit 24da6ff
Show file tree
Hide file tree
Showing 35 changed files with 22 additions and 20 deletions.
2 changes: 1 addition & 1 deletion tests/all_test.cpp
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#define CATCH_CONFIG_MAIN // This tells Catch to provide a main() - only do this in one cpp file
#include <catch.hpp>

#include "all.hpp"
#include <sink/all.hpp>

#include <vector>

Expand Down
2 changes: 1 addition & 1 deletion tests/any_test.cpp
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#define CATCH_CONFIG_MAIN // This tells Catch to provide a main() - only do this in one cpp file
#include <catch.hpp>

#include "any.hpp"
#include <sink/any.hpp>

#include <vector>

Expand Down
2 changes: 1 addition & 1 deletion tests/copy_to_test.cpp
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#define CATCH_CONFIG_MAIN // This tells Catch to provide a main() - only do this in one cpp file
#include <catch.hpp>

#include <copy_to.hpp>
#include <sink/copy_to.hpp>

#include <vector>

Expand Down
2 changes: 1 addition & 1 deletion tests/count_test.cpp
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#define CATCH_CONFIG_MAIN // This tells Catch to provide a main() - only do this in one cpp file
#include <catch.hpp>

#include "count.hpp"
#include <sink/count.hpp>

#include <vector>

Expand Down
4 changes: 2 additions & 2 deletions tests/enumerable_traits_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
#include <catch.hpp>

#include <meta/enumerable_traits.hpp>
#include <filtered.hpp>
#include <transformed.hpp>
#include <operator/filtered.hpp>
#include <operator/transformed.hpp>

#include <vector>
#include <map>
Expand Down
2 changes: 1 addition & 1 deletion tests/filtered_test.cpp
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#define CATCH_CONFIG_MAIN // This tells Catch to provide a main() - only do this in one cpp file
#include <catch.hpp>

#include "filtered.hpp"
#include <operator/filtered.hpp>

#include <vector>

Expand Down
2 changes: 1 addition & 1 deletion tests/flattened_test.cpp
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#define CATCH_CONFIG_MAIN // This tells Catch to provide a main() - only do this in one cpp file
#include <catch.hpp>

#include <flattened.hpp>
#include <operator/flattened.hpp>

#include <vector>

Expand Down
2 changes: 1 addition & 1 deletion tests/fold_left_test.cpp
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#define CATCH_CONFIG_MAIN // This tells Catch to provide a main() - only do this in one cpp file
#include <catch.hpp>

#include <fold_left.hpp>
#include <sink/fold_left.hpp>

#include <vector>

Expand Down
2 changes: 1 addition & 1 deletion tests/generator_test.cpp
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#define CATCH_CONFIG_MAIN // This tells Catch to provide a main() - only do this in one cpp file
#include <catch.hpp>

#include <generator.hpp>
#include <generator/generator.hpp>

#include <string>
#include <algorithm>
Expand Down
2 changes: 1 addition & 1 deletion tests/infinite_test.cpp
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#define CATCH_CONFIG_MAIN // This tells Catch to provide a main() - only do this in one cpp file
#include <catch.hpp>

#include <infinite.hpp>
#include <generator/infinite.hpp>

#include <string>
#include <algorithm>
Expand Down
4 changes: 2 additions & 2 deletions tests/is_associative_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
#include <catch.hpp>

#include <meta/is_associative.hpp>
#include <filtered.hpp>
#include <transformed.hpp>
#include <operator/filtered.hpp>
#include <operator/transformed.hpp>

#include <vector>
#include <map>
Expand Down
2 changes: 1 addition & 1 deletion tests/keys_test.cpp
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#define CATCH_CONFIG_MAIN // This tells Catch to provide a main() - only do this in one cpp file
#include <catch.hpp>

#include <keys.hpp>
#include <operator/keys.hpp>

#include <vector>

Expand Down
2 changes: 1 addition & 1 deletion tests/mapped_values_test.cpp
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#define CATCH_CONFIG_MAIN // This tells Catch to provide a main() - only do this in one cpp file
#include <catch.hpp>

#include <mapped_values.hpp>
#include <operator/mapped_values.hpp>

#include <vector>

Expand Down
2 changes: 1 addition & 1 deletion tests/sorted_test.cpp
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#define CATCH_CONFIG_MAIN // This tells Catch to provide a main() - only do this in one cpp file
#include <catch.hpp>

#include "sorted.hpp"
#include <operator/sorted.hpp>

#include <vector>

Expand Down
2 changes: 1 addition & 1 deletion tests/transformed_test.cpp
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#define CATCH_CONFIG_MAIN // This tells Catch to provide a main() - only do this in one cpp file
#include <catch.hpp>

#include "transformed.hpp"
#include <operator/transformed.hpp>

#include <vector>

Expand Down
2 changes: 1 addition & 1 deletion tests/zipped_test.cpp
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#define CATCH_CONFIG_MAIN // This tells Catch to provide a main() - only do this in one cpp file
#include <catch.hpp>

#include <zipped.hpp>
#include <operator/zipped.hpp>

#include <vector>

Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
3 changes: 2 additions & 1 deletion tpl/transformed.hpp → tpl/operator/transformed.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@
#include "meta/is_enumerable.hpp"
#include "meta/is_associative.hpp"
#include "meta/enumerable_traits.hpp"
#include "pointer_proxy.hpp"

#include "../detail/pointer_proxy.hpp"

#include <iterator>
#include <type_traits>
Expand Down
3 changes: 2 additions & 1 deletion tpl/zipped.hpp → tpl/operator/zipped.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@
#include "meta/is_enumerable.hpp"
#include "meta/is_associative.hpp"
#include "meta/enumerable_traits.hpp"
#include "pointer_proxy.hpp"

#include "../detail/pointer_proxy.hpp"

#include <iterator>
#include <algorithm>
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 24da6ff

Please sign in to comment.