blob: 05e93528d757d02e904a81afca6736ca3df9ee00 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#ifndef RESPONSE_H
#define RESPONSE_H
#include <iostream>
enum Response {
OK,
WAIT,
BLOCKED,
STALLED,
};
std::ostream &operator<<(std::ostream &os, Response r);
#endif /* RESPONSE_H_INCLUDED */
|