Skip to content

Commit

Permalink
Rename io header as export header
Browse files Browse the repository at this point in the history
  • Loading branch information
otto-link committed Aug 18, 2024
1 parent dd6d4cc commit c4b3f49
Show file tree
Hide file tree
Showing 17 changed files with 17 additions and 17 deletions.
2 changes: 1 addition & 1 deletion HighMap/include/highmap.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
#include "highmap/gradient.hpp"
#include "highmap/heightmap.hpp"
#include "highmap/hydrology.hpp"
#include "highmap/io.hpp"
#include "highmap/export.hpp"
#include "highmap/kernels.hpp"
#include "highmap/math.hpp"
#include "highmap/morphology.hpp"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* this software. */

/**
* @file io.hpp
* @file export.hpp
* @author Otto Link (otto.link.bv@gmail.com)
* @brief
* @version 0.1
Expand Down
2 changes: 1 addition & 1 deletion HighMap/include/highmap/heightmap.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
#include <functional>

#include "highmap/array.hpp"
#include "highmap/io.hpp"
#include "highmap/export.hpp"

namespace hmap
{
Expand Down
2 changes: 1 addition & 1 deletion HighMap/src/array/array_base.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
#include "macrologger.h"

#include "highmap/array.hpp"
#include "highmap/io.hpp"
#include "highmap/export.hpp"

namespace hmap
{
Expand Down
2 changes: 1 addition & 1 deletion HighMap/src/array/array_io.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

#include "highmap/array.hpp"
#include "highmap/colorize.hpp"
#include "highmap/io.hpp"
#include "highmap/export.hpp"

namespace hmap
{
Expand Down
2 changes: 1 addition & 1 deletion HighMap/src/heightmap/heightmap_rgba.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

#include "highmap/colormaps.hpp"
#include "highmap/heightmap.hpp"
#include "highmap/io.hpp"
#include "highmap/export.hpp"
#include "highmap/math.hpp"
#include "highmap/operator.hpp"
#include "highmap/primitives.hpp"
Expand Down
2 changes: 1 addition & 1 deletion HighMap/src/io/export_asset.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
#include "highmap/array.hpp"
#include "highmap/geometry.hpp"
#include "highmap/interpolate.hpp"
#include "highmap/io.hpp"
#include "highmap/export.hpp"
#include "highmap/operator.hpp"

namespace hmap
Expand Down
2 changes: 1 addition & 1 deletion HighMap/src/io/export_birdview.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#include "macrologger.h"

#include "highmap/array.hpp"
#include "highmap/io.hpp"
#include "highmap/export.hpp"
#include "highmap/math.hpp"
#include "highmap/range.hpp"
#include "highmap/shadows.hpp"
Expand Down
2 changes: 1 addition & 1 deletion HighMap/src/io/export_hillshade.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#include "macrologger.h"

#include "highmap/array.hpp"
#include "highmap/io.hpp"
#include "highmap/export.hpp"
#include "highmap/range.hpp"
#include "highmap/shadows.hpp"

Expand Down
2 changes: 1 addition & 1 deletion HighMap/src/io/export_normal_map.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

#include "highmap/array.hpp"
#include "highmap/gradient.hpp"
#include "highmap/io.hpp"
#include "highmap/export.hpp"
#include "highmap/operator.hpp"

namespace hmap
Expand Down
2 changes: 1 addition & 1 deletion HighMap/src/io/export_splatmap.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#include "macrologger.h"

#include "highmap/array.hpp"
#include "highmap/io.hpp"
#include "highmap/export.hpp"
#include "highmap/operator.hpp"

namespace hmap
Expand Down
2 changes: 1 addition & 1 deletion HighMap/src/io/export_vector_glyph.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

#include "highmap/array.hpp"
#include "highmap/geometry.hpp"
#include "highmap/io.hpp"
#include "highmap/export.hpp"
#include "highmap/math.hpp"
#include "highmap/operator.hpp"

Expand Down
2 changes: 1 addition & 1 deletion HighMap/src/io/format_png.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
#include "macrologger.h"

#include "highmap/array.hpp"
#include "highmap/io.hpp"
#include "highmap/export.hpp"

namespace hmap
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
#include "highmap/array.hpp"
#include "highmap/dbg.hpp"
#include "highmap/filters.hpp"
#include "highmap/io.hpp"
#include "highmap/export.hpp"
#include "highmap/math.hpp"
#include "highmap/operator.hpp"
#include "highmap/pyramid.hpp"
Expand Down
2 changes: 1 addition & 1 deletion examples/ex_graph/ex_graph.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#include "highmap/array.hpp"
#include "highmap/geometry.hpp"
#include "highmap/io.hpp"
#include "highmap/export.hpp"

int main(void)
{
Expand Down
2 changes: 1 addition & 1 deletion examples/ex_graph_dijkstra/ex_graph_dijkstra.cpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#include "highmap/array.hpp"
#include "highmap/geometry.hpp"
#include "highmap/io.hpp"
#include "highmap/export.hpp"

int main(void)
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#include "highmap/array.hpp"
#include "highmap/geometry.hpp"
#include "highmap/io.hpp"
#include "highmap/export.hpp"

int main(void)
{
Expand Down

0 comments on commit c4b3f49

Please sign in to comment.