You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
346 B
20 lines
346 B
2 years ago
|
#ifndef MEDUSA_IO_HPP_
|
||
|
#define MEDUSA_IO_HPP_
|
||
|
|
||
|
/**
|
||
|
* @file
|
||
|
* Header for IO module.
|
||
|
*/
|
||
|
|
||
|
#include "Config.hpp"
|
||
|
|
||
|
#include "bits/io/CSV.hpp"
|
||
|
#include "bits/io/CSV_Eigen.hpp"
|
||
|
#include "bits/io/HDF.hpp"
|
||
|
#include "bits/io/HDF_Eigen.hpp"
|
||
|
#include "bits/io/ioformat.hpp"
|
||
|
#include "bits/io/STL.hpp"
|
||
|
#include "bits/io/XML.hpp"
|
||
|
|
||
|
#endif // MEDUSA_IO_HPP_
|