Primary List:
enum CarMake
{
Ford, Toyota, Honda
}
Secondary List:
enum CarModel
{
Explorer, // Ford
Corolla, // Toyota
Camry, // Toyota
Civic, // Honda
Pilot // Honda
}
Is there some means of linking the 2 enum lists together?
So that when using CarMake the program will know which CarModels are linked?