In C++
This is the function I am coding now-
insertobjectnames(std::string clsname, std::string objname)
Now within the above function I have to invoke another function that takes as input the same parameters as above 2, but as address of variables.
The declaration for the second function is given below-
int BitmapHashMap::Insertnew(const std::string& key, std::string& value)
How do I use the clsname and objname parameters from first function to invoke the second function above. The second function(within itself) extracts the values of 'key' and 'value' from the parameters and then uses them.