Index: tools/battor_agent/battor_error.h |
diff --git a/tools/battor_agent/battor_error.h b/tools/battor_agent/battor_error.h |
index bc66e16af8d345dd21906ffbee7736893e665242..2e5efac808cfd20b8c411adacb7f1686c75e0916 100644 |
--- a/tools/battor_agent/battor_error.h |
+++ b/tools/battor_agent/battor_error.h |
@@ -9,11 +9,13 @@ namespace battor { |
// A BattOrError is an error that occurs when communicating with a BattOr. |
enum BattOrError { |
- BATTOR_ERROR_NONE, |
- BATTOR_ERROR_CONNECTION_FAILED, |
- BATTOR_ERROR_TIMEOUT, |
+ BATTOR_ERROR_NONE = 0, |
+ BATTOR_ERROR_CONNECTION_FAILED = 1, |
+ BATTOR_ERROR_TIMEOUT = 2, |
+ BATTOR_ERROR_SEND_ERROR = 3, |
+ BATTOR_ERROR_RECEIVE_ERROR = 4, |
+ BATTOR_ERROR_UNEXPECTED_MESSAGE = 5, |
}; |
- |
} |
#endif // TOOLS_BATTOR_AGENT_BATTOR_ERROR_H_ |