Zane Shelley | a61f4c5 | 2019-08-01 13:58:49 -0500 | [diff] [blame^] | 1 | #pragma once |
| 2 | |
| 3 | #include "hei_includes.hpp" |
| 4 | |
| 5 | namespace libhei |
| 6 | { |
| 7 | |
| 8 | /** |
| 9 | * @brief Contain a list of all active hardware errors on a chip, the contents |
| 10 | * of any registers associated with the active errors, and any other data |
| 11 | * that can be useful for debug. |
| 12 | */ |
| 13 | class IsolationData |
| 14 | { |
| 15 | public: |
| 16 | |
| 17 | /** @brief Default constructor. */ |
| 18 | IsolationData() = default; |
| 19 | |
| 20 | /** @brief Copy constructor. */ |
| 21 | IsolationData( const IsolationData & ) = default; |
| 22 | |
| 23 | /** @brief Assignment operator. */ |
| 24 | IsolationData & operator=( const IsolationData & ) = default; |
| 25 | |
| 26 | /** @brief Destructor. */ |
| 27 | ~IsolationData() = default; |
| 28 | |
| 29 | private: |
| 30 | |
| 31 | }; // end class IsolationData |
| 32 | |
| 33 | } // end namespace libhei |
| 34 | |