globalhandler: remove globalhandler.hpp

The IPMI_CMD declared in globalhandler.hpp is redundant because these
commands are already declared in api-types.hpp, so this commit
remove the globalhandler.hpp file.

Change-Id: Id4b41ca90cd5f1ceb2179cefc237f5117ac9e14c
Signed-off-by: George Liu <liuxiwei@ieisystem.com>
diff --git a/globalhandler.cpp b/globalhandler.cpp
index c164a20..fd8d5d6 100644
--- a/globalhandler.cpp
+++ b/globalhandler.cpp
@@ -1,5 +1,3 @@
-#include "globalhandler.hpp"
-
 #include <ipmid/api.hpp>
 #include <ipmid/utils.hpp>
 #include <phosphor-logging/lg2.hpp>
diff --git a/globalhandler.hpp b/globalhandler.hpp
deleted file mode 100644
index 078b170..0000000
--- a/globalhandler.hpp
+++ /dev/null
@@ -1,9 +0,0 @@
-#pragma once
-
-#include <stdint.h>
-
-// Various GLOBAL operations under a single command.
-enum ipmi_global_control_cmds : uint8_t
-{
-    IPMI_CMD_COLD_RESET = 0x02,
-};