enum ID // IDs
{
ID_HEADER = 0, // ID 0 = headers
#include "DATA.CSV"
ID_LIMIT
};
I inherited some code here.....
Looking at "DATA.CSV" I see all the ID's used to populate the enum in column B, along with other data.
My question:
How does the enum know that it is using "column B" to retrieve it's members? There must be some other logic in the application yet I don't see it. What else should I look for?
Thanks.