How can I in C++ make a function accept every Object, so I can give it numbers, String or other Objects. I am not very well in C++, I hope it\'s not a totally stupid questio
I'm not sure what you're trying to accomplish, but you can pass a void pointer as a parameter.
void foo(void* bar);