↰ Return to documentation for file (include/networkit/io/RasterReader.hpp
)
/*
* RasterReader.hpp
*
* Created on: 20.07.2015
* Author: Henning
*/
#ifndef NETWORKIT_IO_RASTER_READER_HPP_
#define NETWORKIT_IO_RASTER_READER_HPP_
#include <string>
#include <vector>
namespace NetworKit {
class RasterReader final {
double normalizationFactor;
public:
RasterReader(double normalizationFactor);
~RasterReader() = default;
std::pair<std::vector<double>, std::vector<double>> read(std::string_view path);
};
} /* namespace NetworKit */
#endif // NETWORKIT_IO_RASTER_READER_HPP_