Borawski.Lukasz | b6df6dc | 2018-01-24 10:20:45 +0100 | [diff] [blame] | 1 | #pragma once |
| 2 | |
Ed Tanous | 3cd7072 | 2024-04-06 09:24:01 -0700 | [diff] [blame] | 3 | #include "app.hpp" |
Borawski.Lukasz | b6df6dc | 2018-01-24 10:20:45 +0100 | [diff] [blame] | 4 | |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 5 | namespace redfish |
| 6 | { |
Borawski.Lukasz | b6df6dc | 2018-01-24 10:20:45 +0100 | [diff] [blame] | 7 | /* |
| 8 | * @brief Top level class installing and providing Redfish services |
| 9 | */ |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 10 | class RedfishService |
| 11 | { |
| 12 | public: |
| 13 | /* |
| 14 | * @brief Redfish service constructor |
| 15 | * |
| 16 | * Loads Redfish configuration and installs schema resources |
| 17 | * |
| 18 | * @param[in] app Crow app on which Redfish will initialize |
| 19 | */ |
Ed Tanous | 3cd7072 | 2024-04-06 09:24:01 -0700 | [diff] [blame] | 20 | explicit RedfishService(App& app); |
Borawski.Lukasz | b6df6dc | 2018-01-24 10:20:45 +0100 | [diff] [blame] | 21 | }; |
| 22 | |
Ed Tanous | 1abe55e | 2018-09-05 08:30:59 -0700 | [diff] [blame] | 23 | } // namespace redfish |