I have two classes EmpData and VectorHandler.
EmpData contains info abt employees like name and empcode
Vectorhandler has a vector which stores Empdata objects .
I want to use removeElement() which will delete the object which contains the particular empname/empcode from the vector.
This doesnot work:
v.removeElement(empcode);
as empcode is not of type object but a simple int variable.
How do i delete the particular object which contains that particular empcode