How do I index into an enum via "item index" instead of the "value indexing":
"Value indexing" (not useful to me with what I am doing):
eSerialBauds eBaud = static_cast<eSerialBauds>(1200); // yields eBaud1200
I want "item indexing": ( How to get the following? )
eSerialBauds eBaud = static_cast<eSerialBauds>(3); // to yield eBaud1200
// values (from WinBase.h)
#define CBR_110 110
#define CBR_300 300
#define CBR_600 600
#define CBR_1200 1200
#define CBR_2400 2400
enum class eSerialBauds
{
eBaud110 = CBR_110,
eBaud300 = CBR_300,
eBaud600 = CBR_600,
eBaud1200 = CBR_1200,
eBaud2400 = CBR_2400,
}
Please note that I am given this enum class from another class. There are many. So I have to work with what is given to me.
I did write a work around method but it would be nice to have a more elegant way of getting the result.
Just set up an array containing the enum values, like this:
And then you can do, for example: