blob: def6578fcd274dccf20915c52cb23f7d21d77343 (
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"};
return os << nameR[r];
}
|