Peano
Loading...
Searching...
No Matches
stacks.h
Go to the documentation of this file.
1// This file is part of the Peano project. For conditions of distribution and
2// use, please see the copyright notice at www.peano-framework.org
3#pragma once
4
5
6#include <string>
7#include "config.h"
8
9
10namespace peano4 {
11 namespace stacks {
12 enum class IOMode {
13 None,
14 MPISend,
16 };
17
18 #if !defined(Parallel)
22 typedef int MPI_Comm;
23 #endif
24 }
25}
26
27
28std::string toString( peano4::stacks::IOMode mode );
29
30
std::string toString(peano4::stacks::IOMode mode)