Program Listing for File GraphIO.hpp

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

    void writeAdjacencyList(const Graph &G, const std::string &path);
};

} /* namespace NetworKit */
#endif // NETWORKIT_IO_GRAPH_IO_HPP_