Skip to content
Snippets Groups Projects
IO.h 526 B
Newer Older
 * Distributed under the OSI-approved Apache License, Version 2.0.  See
 * accompanying file Copyright.txt for details.
 *
 * IO.h
 *
 *  Created on: Feb 2017
 *      Author: Norbert Podhorszki
 */

#ifndef IO_H_
#define IO_H_

#include "HeatTransfer.h"
#include "Settings.h"
#include <mpi.h>
  IO(const Settings &s, MPI_Comm comm);
  ~IO();
  void write(int step, const HeatTransfer &ht, const Settings &s,
             MPI_Comm comm);

  std::string m_outputfilename;