Dhruvaraj Subhashchandran | 59642e2 | 2020-03-19 03:37:44 -0500 | [diff] [blame] | 1 | #include <cstdint> |
| 2 | #include <stdexcept> |
| 3 | |
| 4 | namespace phosphor |
| 5 | { |
| 6 | namespace dump |
| 7 | { |
| 8 | namespace host |
| 9 | { |
Ramesh Iyyar | bb410df | 2020-08-03 03:13:04 -0500 | [diff] [blame] | 10 | void requestOffload(uint32_t) |
Dhruvaraj Subhashchandran | 59642e2 | 2020-03-19 03:37:44 -0500 | [diff] [blame] | 11 | { |
| 12 | throw std::runtime_error("Hostdump offload method not specified"); |
| 13 | } |
| 14 | |
Dhruvaraj Subhashchandran | 4c63ce5 | 2020-12-18 02:07:22 -0600 | [diff] [blame] | 15 | void requestDelete(uint32_t, uint32_t) |
Ramesh Iyyar | 2279386 | 2020-12-04 04:03:03 -0600 | [diff] [blame] | 16 | { |
| 17 | throw std::runtime_error("Hostdump delete method not specified"); |
| 18 | } |
Dhruvaraj Subhashchandran | 59642e2 | 2020-03-19 03:37:44 -0500 | [diff] [blame] | 19 | } // namespace host |
| 20 | } // namespace dump |
| 21 | } // namespace phosphor |