Skip to content
Snippets Groups Projects
IO.h 406 B
Newer Older
/*
 * IO.h
 *
 *  Created on: Feb 2017
 *      Author: Norbert Podhorszki
 */

#ifndef IO_H_
#define IO_H_

#include <mpi.h>
#include "Settings.h"
#include "HeatTransfer.h"

class IO
{

public:
    IO( const Settings& s, MPI_Comm comm );
    void write( int step, const HeatTransfer& ht, const Settings& s, MPI_Comm comm );
    
private:
    std::string m_outputfilename;
};

#endif /* IO_H_ */