The .* is, as mbozzi says, accessing a member of the object returned by the function. Specifically, the member is a pointer, so the star is dereferencing the pointer.
In other words, these symbols have their normal C++ meanings. It just looks a bit confusing because they're all being used close together in the same line.