#include <fstream>
#include <istream>
#include <ostream>
#include "../VoxelGrid.hpp"
#include "exceptions.h"
Go to the source code of this file.
|
| template<typename DataT > |
| void | readData (std::istream &is, DataT &data) |
| |
| template<typename ReadT , typename Derived > |
| void | readEigen (std::istream &is, Eigen::MatrixBase< Derived > &matrix) |
| |
| template<typename DataT > |
| void | writeData (std::ostream &os, const DataT &data) |
| |
| template<typename WriteT , typename Derived > |
| void | writeEigen (std::ostream &os, const Eigen::MatrixBase< Derived > &matrix) |
| |