Matt Spinler | afa857c | 2019-10-24 13:03:46 -0500 | [diff] [blame] | 1 | #pragma once |
2 | |||||
3 | namespace openpower | ||||
4 | { | ||||
5 | namespace pels | ||||
6 | { | ||||
7 | |||||
8 | enum class UserDataFormat | ||||
9 | { | ||||
Matt Spinler | 56ad2a0 | 2020-03-26 14:00:52 -0500 | [diff] [blame] | 10 | json = 1, |
11 | cbor = 2, | ||||
12 | text = 3, | ||||
13 | custom = 4 | ||||
Matt Spinler | afa857c | 2019-10-24 13:03:46 -0500 | [diff] [blame] | 14 | }; |
15 | |||||
16 | enum class UserDataFormatVersion | ||||
17 | { | ||||
Matt Spinler | 56ad2a0 | 2020-03-26 14:00:52 -0500 | [diff] [blame] | 18 | json = 1, |
19 | cbor = 1, | ||||
20 | text = 1 | ||||
Matt Spinler | afa857c | 2019-10-24 13:03:46 -0500 | [diff] [blame] | 21 | }; |
22 | |||||
23 | } // namespace pels | ||||
24 | } // namespace openpower |