I have a enum declared as follows
enum StatusLevels
{ eConversionStatusNone= 0,
eStatusInProgress = 1,
eStatusSuccess = 2,
eFailed = 3
} StatusLevels;
im using this within code to cast a variable of type short to the enum type as follows
StatusLevels eStatus;
eStatus=static_cast<StatusLevels>...