Program Listing for File GMLGraphReader.hpp

Return to documentation for file (include/networkit/io/GMLGraphReader.hpp)

/*
 * GMLGraphReader.hpp
 *
 *  Created on: 18.09.2014
 *      Author: Maximilian Vogel (maximilian.vogel@student.kit.edu)
 */

#ifndef NETWORKIT_IO_GML_GRAPH_READER_HPP_
#define NETWORKIT_IO_GML_GRAPH_READER_HPP_

#include <networkit/io/GraphReader.hpp>

namespace NetworKit {

class GMLGraphReader final : public GraphReader {
public:
    GMLGraphReader() = default;

    Graph read(const std::string &path) override;
};

} /* namespace NetworKit */
#endif // NETWORKIT_IO_GML_GRAPH_READER_HPP_