You can play some dirty pointer trick (ie access a public member and move the pointer) but that is a undefined behaviour and one should not do that.
So simple answer is You can not. That member is private, it's not visible outside the class and the whole purpose of having private is to remain visible inside the class.