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