↰ Return to documentation for file (include/networkit/io/GraphIO.hpp
)
/*
* GraphIO.hpp
*
* Created on: 09.01.2013
* Author: Christian Staudt
*/
#ifndef NETWORKIT_IO_GRAPH_IO_HPP_
#define NETWORKIT_IO_GRAPH_IO_HPP_
#include <string>
#include <networkit/auxiliary/Log.hpp>
#include <networkit/graph/Graph.hpp>
namespace NetworKit {
class GraphIO final {
public:
void writeEdgeList(const Graph &G, std::string_view path);
void writeAdjacencyList(const Graph &G, std::string_view path);
};
} /* namespace NetworKit */
#endif // NETWORKIT_IO_GRAPH_IO_HPP_