Move array.hpp to ngarray.hpp

This commit is contained in:
Matthias Hochsteger 2019-07-09 10:41:40 +02:00
parent 2d46d21a52
commit 7f7b386388
4 changed files with 10 additions and 10 deletions

View File

@ -2,14 +2,14 @@ add_definitions(-DNGINTERFACE_EXPORTS)
add_library(gen INTERFACE)
set(sdir ${CMAKE_CURRENT_SOURCE_DIR})
target_sources(gen INTERFACE
${sdir}/array.cpp ${sdir}/bitarray.cpp ${sdir}/dynamicmem.cpp ${sdir}/flags.cpp
${sdir}/ngarray.cpp ${sdir}/bitarray.cpp ${sdir}/dynamicmem.cpp ${sdir}/flags.cpp
${sdir}/hashtabl.cpp ${sdir}/mystring.cpp ${sdir}/optmem.cpp ${sdir}/parthreads.cpp
${sdir}/seti.cpp ${sdir}/sort.cpp ${sdir}/spbita2d.cpp ${sdir}/table.cpp
${sdir}/mpi_interface.cpp ${sdir}/gzstream.cpp
)
install(FILES
array.hpp autodiff.hpp autoptr.hpp bitarray.hpp
ngarray.hpp autodiff.hpp autoptr.hpp bitarray.hpp
dynamicmem.hpp flags.hpp hashtabl.hpp mpi_interface.hpp myadt.hpp
ngsimd.hpp mystring.hpp netgenout.hpp ngpython.hpp
optmem.hpp parthreads.hpp seti.hpp sort.hpp

View File

@ -28,7 +28,7 @@ namespace netgen
#include "dynamicmem.hpp"
#include "template.hpp"
#include "array.hpp"
#include "ngarray.hpp"
#include "table.hpp"
#include "hashtabl.hpp"

View File

@ -1,5 +1,5 @@
#ifndef FILE_NGSTD_ArrayCPP
#define FILE_NGSTD_ArrayCPP
#ifndef FILE_NGSTD_NgArrayCPP
#define FILE_NGSTD_NgArrayCPP
// necessary for SGI ????
/**************************************************************************/
@ -71,5 +71,5 @@ namespace netgen
}
#endif
}
#endif
#endif // FILE_NGSTD_NgArrayCPP

View File

@ -1,8 +1,8 @@
#ifndef FILE_Array
#define FILE_Array
#ifndef NGARRAY_HPP_INCLUDED
#define NGARRAY_HPP_INCLUDED
/**************************************************************************/
/* File: array.hpp */
/* File: ngarray.hpp */
/* Author: Joachim Schoeberl */
/* Date: 01. Jun. 95 */
/**************************************************************************/
@ -795,5 +795,5 @@ namespace netgen
}
}
#endif
#endif // NGARRAY_HPP_INCLUDED