Program Listing for File DGSReader.hpp

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

/*
 * DGSReader.hpp
 *
 *  Created on: 01.06.2013
 *      Author: cls
 */

#ifndef NETWORKIT_IO_DGS_READER_HPP_
#define NETWORKIT_IO_DGS_READER_HPP_

#include <fstream>
#include <string>

#include <networkit/io/DynamicGraphReader.hpp>

namespace NetworKit {

class DGSReader final : public DynamicGraphReader {

public:
    void read(std::string path, GraphEventProxy &Gproxy) override;
};

} /* namespace NetworKit */
#endif // NETWORKIT_IO_DGS_READER_HPP_