blob: ea42507f44d3adcbc01bce1c8f7f5168a5d24c57 [file] [log] [blame]
Patrick Venturecf2d1b12018-12-11 18:22:36 -08001#pragma once
2
3#include "ipmi_interface.hpp"
4
5class IpmiHandler : public IpmiInterface
6{
7 public:
8 IpmiHandler() = default;
9
10 int sendPacket(const std::vector<std::uint8_t>& data) override;
11};