Peano
Loading...
Searching...
No Matches
stacks.cpp
Go to the documentation of this file.
1#include "stacks.h"
2
3
4std::string toString( peano4::stacks::IOMode mode ) {
5 switch (mode) {
7 return "receive";
9 return "send";
11 return "none";
12 }
13 return "<undef>";
14}
15
std::string toString(peano4::stacks::IOMode mode)
Definition stacks.cpp:4