Program Listing for File RasterReader.hpp

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(const std::string &path);
};

} /* namespace NetworKit */
#endif // NETWORKIT_IO_RASTER_READER_HPP_