bmc: enable configuration of all verification

Enable verification configuration beyond the result file check.  This
patchset allows a developer to provide their own verification mechanisms
by implementing an interface and adding configuration to enable using
their custom version.

Signed-off-by: Patrick Venture <venture@google.com>
Change-Id: Iba5d4be75bb49d9c4ab84be8578f0306c15b5be9
diff --git a/status.hpp b/status.hpp
new file mode 100644
index 0000000..7ef0ce2
--- /dev/null
+++ b/status.hpp
@@ -0,0 +1,15 @@
+#pragma once
+
+#include <cstdint>
+
+namespace blobs
+{
+
+enum class VerifyCheckResponses : std::uint8_t
+{
+    running = 0,
+    success = 1,
+    failed = 2,
+    other = 3,
+};
+}