Program Listing for File CoverReader.hpp

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

#ifndef NETWORKIT_IO_COVER_READER_HPP_
#define NETWORKIT_IO_COVER_READER_HPP_

#include <networkit/graph/Graph.hpp>
#include <networkit/structures/Cover.hpp>

namespace NetworKit {

class CoverReader {
public:
    virtual Cover read(const std::string &path, Graph &G);
};

} /* namespace NetworKit */

#endif // NETWORKIT_IO_COVER_READER_HPP_