/* * ExportGraph_ToFiles.hpp * * Created on: 08.03.2012 * Author: heber */ #ifndef EXPORTGRAPH_TOFILES_HPP_ #define EXPORTGRAPH_TOFILES_HPP_ // include config.h #ifdef HAVE_CONFIG_H #include #endif #include "Fragmentation/Exporters/ExportGraph.hpp" /** ExportGraph_ToFiles implements an ExportGraph as storing all fragmentary * systems to files. */ class ExportGraph_ToFiles : public ExportGraph { public: ExportGraph_ToFiles(); void operator()(); }; #endif /* EXPORTGRAPH_TOFILES_HPP_ */