1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25
#pragma once namespace bmcweb { /** * AsyncResp * Gathers data needed for response processing after async calls are done */ class AsyncResp { public: AsyncResp(crow::Response& response) : res(response) { } ~AsyncResp() { res.end(); } crow::Response& res; }; } // namespace bmcweb