summaryrefslogtreecommitdiff
path: root/redfish-core
diff options
context:
space:
mode:
authorNan Zhou <nanzhoumails@gmail.com>2022-10-26 00:12:32 +0300
committerEd Tanous <ed@tanous.net>2022-10-26 02:21:29 +0300
commit4e7efda1ada02e626bbbd70cf35a742fbe9cfe54 (patch)
tree64f12d15e182ebeed89460147b5547e616806638 /redfish-core
parentc6bcedc6c82fefa7f4327aae9e57e6464413c4b7 (diff)
downloadbmcweb-4e7efda1ada02e626bbbd70cf35a742fbe9cfe54.tar.xz
redfish.hpp: fix header path
This must be historical reason that we use relative path in these includes. Given that redfish-core/lib is already in include path, these relative paths are not necessary. Tested: code compiles. Signed-off-by: Nan Zhou <nanzhoumails@gmail.com> Change-Id: Ia6b6be8a7aded98c96cdca150467bc7d825230af
Diffstat (limited to 'redfish-core')
-rw-r--r--redfish-core/include/redfish.hpp68
1 files changed, 34 insertions, 34 deletions
diff --git a/redfish-core/include/redfish.hpp b/redfish-core/include/redfish.hpp
index b20944b053..be75f8943b 100644
--- a/redfish-core/include/redfish.hpp
+++ b/redfish-core/include/redfish.hpp
@@ -15,40 +15,40 @@
*/
#pragma once
-#include "../lib/account_service.hpp"
-#include "../lib/bios.hpp"
-#include "../lib/cable.hpp"
-#include "../lib/certificate_service.hpp"
-#include "../lib/chassis.hpp"
-#include "../lib/ethernet.hpp"
-#include "../lib/event_service.hpp"
-#include "../lib/hypervisor_system.hpp"
-#include "../lib/log_services.hpp"
-#include "../lib/manager_diagnostic_data.hpp"
-#include "../lib/managers.hpp"
-#include "../lib/memory.hpp"
-#include "../lib/message_registries.hpp"
-#include "../lib/metric_report.hpp"
-#include "../lib/metric_report_definition.hpp"
-#include "../lib/network_protocol.hpp"
-#include "../lib/pcie.hpp"
-#include "../lib/power.hpp"
-#include "../lib/power_subsystem.hpp"
-#include "../lib/processor.hpp"
-#include "../lib/redfish_sessions.hpp"
-#include "../lib/redfish_v1.hpp"
-#include "../lib/roles.hpp"
-#include "../lib/sensors.hpp"
-#include "../lib/service_root.hpp"
-#include "../lib/storage.hpp"
-#include "../lib/systems.hpp"
-#include "../lib/task.hpp"
-#include "../lib/telemetry_service.hpp"
-#include "../lib/thermal.hpp"
-#include "../lib/thermal_subsystem.hpp"
-#include "../lib/trigger.hpp"
-#include "../lib/update_service.hpp"
-#include "../lib/virtual_media.hpp"
+#include "account_service.hpp"
+#include "bios.hpp"
+#include "cable.hpp"
+#include "certificate_service.hpp"
+#include "chassis.hpp"
+#include "ethernet.hpp"
+#include "event_service.hpp"
+#include "hypervisor_system.hpp"
+#include "log_services.hpp"
+#include "manager_diagnostic_data.hpp"
+#include "managers.hpp"
+#include "memory.hpp"
+#include "message_registries.hpp"
+#include "metric_report.hpp"
+#include "metric_report_definition.hpp"
+#include "network_protocol.hpp"
+#include "pcie.hpp"
+#include "power.hpp"
+#include "power_subsystem.hpp"
+#include "processor.hpp"
+#include "redfish_sessions.hpp"
+#include "redfish_v1.hpp"
+#include "roles.hpp"
+#include "sensors.hpp"
+#include "service_root.hpp"
+#include "storage.hpp"
+#include "systems.hpp"
+#include "task.hpp"
+#include "telemetry_service.hpp"
+#include "thermal.hpp"
+#include "thermal_subsystem.hpp"
+#include "trigger.hpp"
+#include "update_service.hpp"
+#include "virtual_media.hpp"
namespace redfish
{