I have one class object (an employee object for instance), and I want to add this object to two separate arrays in my program (array in store class and array in chain class both implemented by template).
I wrote this code:
void Chain::addEmployee(Employee *to_put,int s_loc)
{
chain_emps.addObj(to_put); //add object to array in chain class
(*(chain_stores.getObj(s_loc))).addEmployee(to_put); // add object to array in store class
}
void Store::addEmployee(Employee *to_put)
{
store_emps.addObj(to_put);
}
when I run this program I get a runtime error..
what's the problem...?
Our community of experts have been thoroughly vetted for their expertise and industry experience.