How to cast/convert pointer to reference in C++
Call it like this:
foo(*ob);
Note that there is no casting going on here, as suggested in your question title. All we have done is de-referenced the pointer to the object which we then pass to the function.
foo(*ob);
You don't need to cast it because it's the same Object type, you just need to dereference it.