Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix headers that were broken by #1510 #1522

Merged
merged 1 commit into from
Jun 19, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 13 additions & 13 deletions bindings/C/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@


target_sources(adios2 PRIVATE
${CMAKE_CURRENT_SOURCE_DIR}/c/adios2_c_adios.cpp
${CMAKE_CURRENT_SOURCE_DIR}/c/adios2_c_io.cpp
${CMAKE_CURRENT_SOURCE_DIR}/c/adios2_c_engine.cpp
${CMAKE_CURRENT_SOURCE_DIR}/c/adios2_c_variable.cpp
${CMAKE_CURRENT_SOURCE_DIR}/c/adios2_c_attribute.cpp
${CMAKE_CURRENT_SOURCE_DIR}/c/adios2_c_operator.cpp
${CMAKE_CURRENT_SOURCE_DIR}/adios2/c/adios2_c_adios.cpp
${CMAKE_CURRENT_SOURCE_DIR}/adios2/c/adios2_c_io.cpp
${CMAKE_CURRENT_SOURCE_DIR}/adios2/c/adios2_c_engine.cpp
${CMAKE_CURRENT_SOURCE_DIR}/adios2/c/adios2_c_variable.cpp
${CMAKE_CURRENT_SOURCE_DIR}/adios2/c/adios2_c_attribute.cpp
${CMAKE_CURRENT_SOURCE_DIR}/adios2/c/adios2_c_operator.cpp
)
target_include_directories(adios2
PUBLIC
Expand All @@ -26,12 +26,12 @@ install(
)

install(
FILES c/adios2_c_types.h
c/adios2_c_adios.h
c/adios2_c_io.h
c/adios2_c_variable.h
c/adios2_c_attribute.h
c/adios2_c_engine.h
c/adios2_c_operator.h
FILES adios2/c/adios2_c_types.h
adios2/c/adios2_c_adios.h
adios2/c/adios2_c_io.h
adios2/c/adios2_c_variable.h
adios2/c/adios2_c_attribute.h
adios2/c/adios2_c_engine.h
adios2/c/adios2_c_operator.h
DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/adios2/c
)
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
12 changes: 6 additions & 6 deletions bindings/C/adios2_c.h
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@

#include "adios2/common/ADIOSConfig.h"

#include "c/adios2_c_adios.h"
#include "c/adios2_c_attribute.h"
#include "c/adios2_c_engine.h"
#include "c/adios2_c_io.h"
#include "c/adios2_c_operator.h"
#include "c/adios2_c_variable.h"
#include "adios2/c/adios2_c_adios.h"
#include "adios2/c/adios2_c_attribute.h"
#include "adios2/c/adios2_c_engine.h"
#include "adios2/c/adios2_c_io.h"
#include "adios2/c/adios2_c_operator.h"
#include "adios2/c/adios2_c_variable.h"

#endif /* ADIOS2_BINDINGS_C_ADIOS2_C_H_ */
40 changes: 20 additions & 20 deletions bindings/CXX11/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,17 +4,17 @@
#------------------------------------------------------------------------------#

target_sources(adios2 PRIVATE
${CMAKE_CURRENT_SOURCE_DIR}/cxx11/ADIOS.cpp
${CMAKE_CURRENT_SOURCE_DIR}/cxx11/Attribute.cpp
${CMAKE_CURRENT_SOURCE_DIR}/cxx11/Engine.cpp
${CMAKE_CURRENT_SOURCE_DIR}/cxx11/Engine.tcc
${CMAKE_CURRENT_SOURCE_DIR}/cxx11/IO.cpp
${CMAKE_CURRENT_SOURCE_DIR}/cxx11/IO.tcc
${CMAKE_CURRENT_SOURCE_DIR}/cxx11/Operator.cpp
${CMAKE_CURRENT_SOURCE_DIR}/cxx11/Types.cpp
${CMAKE_CURRENT_SOURCE_DIR}/cxx11/Types.tcc
${CMAKE_CURRENT_SOURCE_DIR}/cxx11/Variable.cpp
${CMAKE_CURRENT_SOURCE_DIR}/cxx11/fstream/ADIOS2fstream.cpp
${CMAKE_CURRENT_SOURCE_DIR}/adios2/cxx11/ADIOS.cpp
${CMAKE_CURRENT_SOURCE_DIR}/adios2/cxx11/Attribute.cpp
${CMAKE_CURRENT_SOURCE_DIR}/adios2/cxx11/Engine.cpp
${CMAKE_CURRENT_SOURCE_DIR}/adios2/cxx11/Engine.tcc
${CMAKE_CURRENT_SOURCE_DIR}/adios2/cxx11/IO.cpp
${CMAKE_CURRENT_SOURCE_DIR}/adios2/cxx11/IO.tcc
${CMAKE_CURRENT_SOURCE_DIR}/adios2/cxx11/Operator.cpp
${CMAKE_CURRENT_SOURCE_DIR}/adios2/cxx11/Types.cpp
${CMAKE_CURRENT_SOURCE_DIR}/adios2/cxx11/Types.tcc
${CMAKE_CURRENT_SOURCE_DIR}/adios2/cxx11/Variable.cpp
${CMAKE_CURRENT_SOURCE_DIR}/adios2/cxx11/fstream/ADIOS2fstream.cpp
)

target_include_directories(adios2
Expand All @@ -28,18 +28,18 @@ install(
)

install(
FILES cxx11/fstream/ADIOS2fstream.h
FILES adios2/cxx11/fstream/ADIOS2fstream.h
DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/adios2/cxx11/fstream
)

install(
FILES cxx11/ADIOS.h
cxx11/ADIOS.inl
cxx11/IO.h
cxx11/Variable.h
cxx11/Attribute.h
cxx11/Engine.h
cxx11/Operator.h
cxx11/Types.h
FILES adios2/cxx11/ADIOS.h
adios2/cxx11/ADIOS.inl
adios2/cxx11/IO.h
adios2/cxx11/Variable.h
adios2/cxx11/Attribute.h
adios2/cxx11/Engine.h
adios2/cxx11/Operator.h
adios2/cxx11/Types.h
DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/adios2/cxx11
)
16 changes: 8 additions & 8 deletions bindings/CXX11/adios2.h
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@
#include "adios2/common/ADIOSMacros.h"
#include "adios2/common/ADIOSTypes.h"

#include "cxx11/ADIOS.h"
#include "cxx11/Attribute.h"
#include "cxx11/Engine.h"
#include "cxx11/IO.h"
#include "cxx11/Operator.h"
#include "cxx11/Types.h"
#include "cxx11/Variable.h"
#include "cxx11/fstream/ADIOS2fstream.h"
#include "adios2/cxx11/ADIOS.h"
#include "adios2/cxx11/Attribute.h"
#include "adios2/cxx11/Engine.h"
#include "adios2/cxx11/IO.h"
#include "adios2/cxx11/Operator.h"
#include "adios2/cxx11/Types.h"
#include "adios2/cxx11/Variable.h"
#include "adios2/cxx11/fstream/ADIOS2fstream.h"

#endif /* ADIOS2_BINDINGS_CXX11_H_ */
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.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
12 changes: 6 additions & 6 deletions docs/user_guide/source/api_full/c.rst
Original file line number Diff line number Diff line change
Expand Up @@ -84,39 +84,39 @@ Usage:

.. doxygenfile:: adios2_c_adios.h
:project: C
:path: ../../bindings/C/c/
:path: ../../bindings/C/adios2/c/

``adios2_io`` handler functions
-------------------------------

.. doxygenfile:: adios2_c_io.h
:project: C
:path: ../../bindings/C/c/
:path: ../../bindings/C/adios2/c/

``adios2_variable`` handler functions
-------------------------------------

.. doxygenfile:: adios2_c_variable.h
:project: C
:path: ../../bindings/C/c/
:path: ../../bindings/C/adios2/c/

``adios2_attribute`` handler functions
--------------------------------------

.. doxygenfile:: adios2_c_attribute.h
:project: C
:path: ../../bindings/C/c/
:path: ../../bindings/C/adios2/c/

``adios2_engine`` handler functions
-----------------------------------

.. doxygenfile:: adios2_c_engine.h
:project: C
:path: ../../bindings/C/c/
:path: ../../bindings/C/adios2/c/

``adios2_operator`` handler functions
-------------------------------------

.. doxygenfile:: adios2_c_operator.h
:project: C
:path: ../../bindings/C/c/
:path: ../../bindings/C/adios2/c/
12 changes: 6 additions & 6 deletions docs/user_guide/source/api_full/cxx11.rst
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ The following section provides a summary of the available functionality for each

.. doxygenclass:: adios2::ADIOS
:project: CXX11
:path: ../../bindings/CXX11/cxx11/
:path: ../../bindings/CXX11/adios2/cxx11/
:members:


Expand All @@ -50,15 +50,15 @@ The following section provides a summary of the available functionality for each

.. doxygenclass:: adios2::IO
:project: CXX11
:path: ../../bindings/CXX11/cxx11/
:path: ../../bindings/CXX11/adios2/cxx11/
:members:

:ref:`Variable` ``<T>`` class
-----------------------------

.. doxygenclass:: adios2::Variable
:project: CXX11
:path: ../../bindings/CXX11/cxx11/
:path: ../../bindings/CXX11/adios2/cxx11/
:members:


Expand All @@ -67,7 +67,7 @@ The following section provides a summary of the available functionality for each

.. doxygenclass:: adios2::Attribute
:project: CXX11
:path: ../../bindings/CXX11/cxx11/
:path: ../../bindings/CXX11/adios2/cxx11/
:members:


Expand All @@ -76,15 +76,15 @@ The following section provides a summary of the available functionality for each

.. doxygenclass:: adios2::Engine
:project: CXX11
:path: ../../bindings/CXX11/cxx11/
:path: ../../bindings/CXX11/adios2/cxx11/
:members:

:ref:`Operator` class
---------------------

.. doxygenclass:: adios2::Operator
:project: CXX11
:path: ../../bindings/CXX11/cxx11/
:path: ../../bindings/CXX11/adios2/cxx11/
:members:

Debugging
Expand Down