blob: 3d6e4396c2cccc473709ba4473997f737ef0382c (
plain)
1
2
3
4
5
6
7
8
|
#include "response.h"
#include <iostream>
std::ostream &operator<<(std::ostream &os, Response r)
{
const std::string nameR[] = {"OK", "WAIT", "BLOCKED", "STALLED"};
return os << nameR[r];
}
|