I need to represent a table in c++ frequently. For example, in an application I need to maintain a table as follows.
int analog_channel;
int operator_channel;
state channel_state;
string phone_number;
But I need to make analog_channel and operator_channel indexable. What’s the most suitable table representation in c++ for this kind of data, boost_multiindexor something else?
boost::multi_index would be a good choice.