Remove unused redfish::AsyncResp
This class has been unused for a long time, ever since moving to the
common AsyncResp.
Tested: Code compiles.
Signed-off-by: Ed Tanous <edtanous@google.com>
Change-Id: Ia74c5ff73e6eb991fac5a8b0292bf59910e9689b
diff --git a/include/redfish_v1.hpp b/include/redfish_v1.hpp
index 6d2480e..9b5d460 100644
--- a/include/redfish_v1.hpp
+++ b/include/redfish_v1.hpp
@@ -3,7 +3,6 @@
#include <app.hpp>
#include <http_request.hpp>
#include <http_response.hpp>
-#include <rf_async_resp.hpp>
#include <string>
diff --git a/redfish-core/include/rf_async_resp.hpp b/redfish-core/include/rf_async_resp.hpp
deleted file mode 100644
index 5eb7a3f..0000000
--- a/redfish-core/include/rf_async_resp.hpp
+++ /dev/null
@@ -1,31 +0,0 @@
-#pragma once
-
-#include "http_response.hpp"
-
-namespace redfish
-{
-
-/**
- * AsyncResp
- * Gathers data needed for response processing after async calls are done
- */
-class AsyncResp
-{
- public:
- AsyncResp(crow::Response& response) : res(response)
- {}
-
- AsyncResp(const AsyncResp&) = delete;
- AsyncResp(AsyncResp&&) = delete;
- AsyncResp& operator=(const AsyncResp&) = delete;
- AsyncResp& operator=(AsyncResp&&) = delete;
-
- ~AsyncResp()
- {
- res.end();
- }
-
- crow::Response& res;
-};
-
-} // namespace redfish